please help,

My Question:
how do i separate the pull down menus so that they don't publish the pulldown_contents together in groups? like this: http://thecompanykw.com/ec/index.php...age=contact_us



The situation:
i have 3 pull down menus. all 3 show on the contactus page as 3 separte pull downs. they all contain the same information merged together from each of the 3 pulldown_contents text.

on the tpl page i have <br class="clearBoth" /> separating each pull down. on the the header.php i have these setting types for 3 separate menus but no separation between pull downs.


$content = "my_pulldown_menu";
// do you want to set a default selection? if not, use '0':
$default_pulldown_selection = '0';

//For validation, you're looking for the contents of the $_POST['my_pulldown_menu'] variable
// this is only set after "submit" is clicked.
$pulldown_selected_item = (isset($_POST['my_pulldown_menu'])) ? $_POST['my_pulldown_menu'] : $my_pulldown_menu;

//build an array of entries to be displayed on the template:
$pulldown_contents[] = array('id'=>'0 - Please select a Product of interest', 'text'=>'Please select a Product of interest');
$pulldown_contents[] = array('id'=>'1 - Alcohol', 'text'=>'Alcohol');
$pulldown_contents[] = array('id'=>'2 - Beverages / Food', 'text'=>'Beverages / Food');
$pulldown_contents[] = array('id'=>'3 - Art / Music', 'text'=>'Art / Music');
$pulldown_contents[] = array('id'=>'4 - Entertainment', 'text'=>'Entertainment');
$pulldown_contents[] = array('id'=>'5 - Beauty & Health', 'text'=>'Beauty & Health');
$pulldown_contents[] = array('id'=>'6 - Fashion', 'text'=>'Fashion');
$pulldown_contents[] = array('id'=>'7 - Educational Supplies', 'text'=>'Educational Supplies');


do i need to do something like this at the end of this code?
// return zen_draw_pull_down_menu($string, $my_pulldown_menu);


thanks in advance!