Lástima, no me funciona o estoy haciendo algo mal, esto es lo que tengo:
Código HTML:
<form name="form" method="post" action="xxxxxxxx.php">
<!-- esto si funciona -->
<input name="pr_term" type="text" id="pr_term" size="3" maxlength="3" onChange="document.getElementById('res_pr_term').innerHTML=this.value">
<!-- esto no funciona -->
<select name="pr_time" size="1" id="pr_time" onChange="document.getElementById('res_pr_time').innerHTML=this.options[this.selectedIndex].value;">
<option>Day</option>
<option>Days</option>
<option>Month</option>
<option selected>Months</option>
<option>Year</option>
<option>Years</option>
</select>
</form>
Total
<span id="res_pr_term"></span>
-
<span id="res_pr_time"></span>
Seguramente tu podrás detectar el error, igualmente gracias por tu ayuda
Salu2.