Robert,
You are truly helpful, thank you.
I added the labels and eventually got the names to display.
http://i222.photobucket.com/albums/dd44/wright_family_album/misc/departments2.jpg
I did have to comment out a different section first and add a subsequent {if} statement for the last three labels:
{* {if $default_fields.department.avail eq 'Y'} *}
<tr valign="middle">
<td class="FormButton">{$lng.lbl_department}</td>
<td> {* {if $default_fields.department.required eq 'Y'} *}<font class="Star">*</font>{* {/if} *}</td>
<td nowrap="nowrap">
<select id="department" name="department">
{* <option value="All" {if $smarty.get.type eq ""}selected="selected"{/if}>{$lng.lbl_all}</option> *}
<option value="Customer Service">{$lng.lbl_cs}</option>
<option value="Retail Store Sales" {if $smarty.get.type eq "whole"}selected="selected"{/if}>{$lng.lbl_retail}</option>
<option value="Online Store Sales" {if $smarty.get.type eq "whole"}selected="selected"{/if}>{$lng.lbl_onlinestore}</option>
<option value="Non-Profit Sales" {if $smarty.get.type eq "whole"}selected="selected"{/if}>{$lng.lbl_npsales}</option>
<option value="Marketing & Advertising"
{if $smarty.get.type eq "whole"}selected="selected"{/if}>{$lng.lbl_markad}</option>
<option value="Product Sourcing" {if $smarty.get.type eq "whole"}selected="selected"{/if}>{$lng.lbl_sourcing}</option>
</select>
</td>
</tr>
{* {/if} *}
______
My client is wanting the three different email notifications (different departments). Where would I add the "department" to the subject line? I know their IT should be able to filter it based on that.
Thanks again.
Tim