assuming you have a server-side language and your host supports it, you can do a loop through the results and dynamically create the dropdown select list... I will demonstrate in PHP
Code:
$link = mysqli_connect(host,username,password,database);
if($query = mysqli_query('SELECT fields FROM table WHERE condition', $link))
{
while($rs = mysqli_fetch_array($query))
{
echo '<option value="'.$rs["ID"].'">'.$rs["VALUE"].'</option>';
}
}
where the blue values correspond to your specific information...
Also something to note is that its generally advised to separate the code from the output, so if you have some type of templating system, that would be best.
Bookmarks