suppose you have the list in an array called $listChoices:
for($i=0;$i<=sizeof($listChoices);$i++){
//start the option tag
echo "<option value='" . $listChoices[$i] . "'";
//add the selected phrase at the last one
if($i==sizeof($listChoices)){echo " selected ";}
//close the option tag
echo ">" . $listChoices[$i] . "</option>";
}
That should do it, or at least inspire you.
Sam Fullman
Compass Point Media