I need to modify this procedure, from listing the products of my shopping cart in pull-down menu format to bulleted list. Can anyone help? Thank you and appreciate it.

<b>PRODUCTS LIST</b><br>
<form action="$script_url" method="post">
<select name="category">
<option value="All Products">All Categories</option>|;
my @categories=&get_categories;
foreach $category (@categories) {print "<option>$category</option>";}
print qq | </select>
<input type="submit" value="GO!">
<input type="hidden" name="uid" value="$FORM{'uid'}">
<input type="hidden" name="action" value="search"></form>