Con netscape no logro que los select generados dinámicamente se desplieguen...
![Pensando](http://static.forosdelweb.com/fdwtheme/images/smilies/scratchchin.gif)
Lo intenté de estas 2 maneras:
1º.
Código PHP:
<select name=fontFamily id=fontFamily onchange="asignar(this.name, this.value)">
</select>
<script language=javascript>
var juego = [
"symbol",
"verdana",
"arial",
"comic sans ms",
"courier",
"fixedsys",
"impact",
"modern",
"tahoma",
"webdings",
"wingdings",
"fantasy",
"times news roman"
];
for (var i = 0; i < juego.length; i ++)
document.getElementById("fontFamily").options[i] = new Option(juego[i], juego[i]);
</script>
Código PHP:
<select name=fontFamily id=fontFamily onchange="asignar(this.name, this.value)">
<script language=javascript>
var juego = [
"symbol",
"verdana",
"arial",
"comic sans ms",
"courier",
"fixedsys",
"impact",
"modern",
"tahoma",
"webdings",
"wingdings",
"fantasy",
"times news roman"
];
for (var i = 0; i < juego.length; i ++)
document.writeln("<option value=" + juego[i] + "> " + juego[i] + "</option>");
</script>
</select>
Muchas Gracias
Saludos
![de acuerdo](http://static.forosdelweb.com/fdwtheme/images/smilies/dedosarriba.png)