![lloron](http://static.forosdelweb.com/fdwtheme/images/smilies/chillando.png)
este es el codigo
<SELECT name="NomDiplomado" onChange="MM_jumpMenu('parent',this,0)">
<OPTION> </OPTION>
<?php
include "conexion.php";
$link=conexion();
$result = mysql_query("SELECT NomDiplomado, IDDiplomado FROM diplomado where DiplomadoActivo=1", $link);
while ($row = mysql_fetch_row($result))
{
echo "<option name=diplomado id='encuesta.php?NomDiplomado=$row[0]&IDDiplomado=$row[1]' value=$row[0]>". htmlentities($row[0])."</option>";
}
?>
</select>
y este es el script
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore)
{
eval(targ+".location='"+selObj.options[selObj.selectedIndex].id+"'");
if (restore)
selObj.selectedIndex=10;
}
//-->
</script>
no se si es porque estoy llenando las opciones con datos de la BD
Alguin me podria ayudar...
Gracias de antemano