Lo dicho les dejo mi codigo para que me comenten como se puede hacer:
Código PHP:
<select name="formato_pel" id="formato_pel">
<?
$rs_formato=mysql_query("select * from db_formato WHERE id_formato >0 ORDER BY formato",$link);
while ($row_formato=mysql_fetch_array($rs_formato)){
?>
<option selected><? echo $row_formato['formato'] ?></option>
<? } ?>
</select>
Un saludo.