Hola, estoy tratando de generar unos option select a partir de la selección en un select de cantidades per no funciona. Está en esta página mi formulario:
http://vamonosdevacaciones.com.ve/cotizacion.php
Este es mi código:
Código HTML:
Ver original <select name="habitaciones" id="habitaciones" onchange="createTexts(this)">
y este el javascript
:
Código Javascript
:
Ver originalfunction createTexts(sel) {
var num = sel.value;
if( !num ) num = sel.options[sel.selectedIndex].value;
if( !num ) return;
* * var html="<select name=\"caja_de_texto[]\" />";
num = parseInt( num );
var dest = document.getElementById("cajas");
for( i = 0; i < num; i++ ) {
dest.innerHTML += html;
}
}
Por qué no funciona???
Gracias.