This will most likely not work, but you can try this:
In your vb php file put summit like this:
PHP Code:
$options .= "<option value='".$row[contents]."'>".$row[contents]."</option>";
$options .= "<option value='".$row[contents2]."'>".$row[contents2]."</option>";
Then in your template put summit like this:
PHP Code:
<select name="selection">$options</select>
hopefully ye get the picture.
if not, then in plain words if you put .= infront of a variable you add it to the var instead of overwriting current value.
Hopefully this wasnt just me talking bs ?