Te mando un ejemplo en php para que lo adaptes
Código PHP:
<script type="text/JavaScript">
function destacar(lid){
window.location="administrator_ctrl_newslet9.php?id="+lid;
}
</script>
<select name="select" class="field" onchange="destacar(this.value)">
<?php
$qry=mysql_query("select * from news where identificador='mk' and activo='si' and estado='enviado' order by id desc");
while($row=mysql_fetch_assoc($qry)){
?> <option value="<?php echo $row['id'] ?>" <?php if($row['destacado']=='si'){ ?>selected<?php } ?>><?php echo $row['tituloing'] ?></option><?php } ?>
</select>