um,
here's a bunch of code, you will have to figure out how to put it together
<?
@your_array = ('field1','field2','field3');
<?
-- break the array up, and then add some php and html code to get you
$s_box = '
<option value="something"> field1\n
<option value="something"> field2\n
<option value="something"> field3\n ';
--- then get in the box below using echo or something
<select name="something">
<?
echo = "$s_box";
?>
</select>
i did something similar but don't remember exactly what to get it to work, but try it