prueba esto tambien ....
Código PHP:
Ver original<script languaje="javascript">
function agregar(valor)
{
if(valor==1){document.formulario.texto.value="el valor es uno";}
if(valor==2){document.formulario.texto.value="el valor es dos";}
if(valor==3){document.formulario.texto.value="el valor es tres";}
}
</script>
<form name="formulario">
<select name="miselect" onchange="agregar(this.value)">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<input type="text" name="texto"/>
</form>