Código Javascript:
Ver original
<script type="text/javascript"> document.write("<select name='select'>"); valor = 100; x=1; while(x <= valor) { document.write("<option value='x'>opcion " + x); x=x+1; } document.write("</select>"); </script>
mejorado pero persiste sin mostrar mensaje:
Código Javascript:
Ver original
<script type='text/javascript'> document.write('<select name="select">'); valor = 100; x = 1; while(x <= valor) { document.write('<option value=' + x); document.write('>opcion ' + x); x = x + 1; } document.write('</select>'); </script>