aqui esta algo de mi codigo:
el JavaScript
Código PHP:
<script language="JavaScript">
function montoApo()
{
var valor1 = document.cobroAporte.tipoCuota.options[document.cobroAporte.tipoCuota.selectedIndex].value;
switch (valor1)
{
case '1':
document.cobroAporte.unidad.value='10.00';
break;
default:
document.cobroAporte.unidad.value='0';
}
}
function cuota()
{
var queryCuotaS="<label for='tipoCuota' class='mandatRight'>Tipo Cuota:</label>"+
"<select size='1' name='tipoCuota' onchange='montoApo();' class='inputText'>"+
"<option value='0' > </option>"+
"<option value='1' >Cuota Normal</option>"+
"</select>"+
" <input type='text' name='unidad' size='10' class='inputText'>";
document.getElementById('cuotaS').innerHTML = queryCuotaS;
}
</script>
Código PHP:
<form name='cobroAporte' method='POST' action='/sib2/cont/CobroAporte.php' >
<div>
<label for="concepto" class="mandatRight">
Concepto:
</label>
<select name="concepto" size="1" class="inputText" onchange="(this.selectedIndex==4)?cuota():document.getElementById('cuotaS').innerHTML=''">
<OPTION > </OPTION>
<OPTION>Matricula</OPTION>
<OPTION>Carnet</OPTION>
<OPTION>Certificado</OPTION>
<OPTION>Cuota</OPTION>
</select>
</div>
<div id="cuotaS"></div>
.....
.....