bonjour
soit un javascript
ici des exemples faudra adapter
http://www.toutjavascript.com/savoir/savoir06_3.php3#truc7
soit un code php qui alimente une table et qui construit ton select dynamiquement
echo '<select name="un_nom">';
while($r=mysql_fetch_array($q)){
echo '<option ="'.$r['value'].'">'.$r['libelle'].'</option>';
}
echo '</select>';
a++

Bonne programmation !