Try this code
<?php
echo '<select>';
$query = mysql_query("SELECT vehicle_make FROM vehicles WHERE vehicle_type='Ford'");
while ( $r = mysql_fetch_row($query) ){
echo '<option value="'. $r[0] .'">'. $r[0] ."</option>\n";
}
echo '</select>';
?>
Hope I was of little help
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --