Using Roles and Profiles in Deluge

Using Roles and Profiles in Deluge

I have a form with a section called "Billing_Details" for use by our billing department. I would like to hide the section when the user is not a member of the Billing Department. I have a user profile called Billing Department.

My question is this: is there a way to use the user role or profile to hide/show sections or fields when a form is loaded?
For example:
On-load
if (userprofile="Billing Department")
{
show Billing_Details_Section;
}
else
{
hide Billing_Details_Section;
}