Puedes hacer que en función del evento
ONCHANGE en tu
SELECT pase:
Código:
<script>
function sectores()
{
var Indice=window.document.form1.SECTOR.selectedIndex;
document.form1.SECTORNOMBRE.value=document.form1.SECTOR.options[Indice].text;
}
</script>
Código HTML:
<form name="form1">
<input type="text" name="SECTORNOMBRE" value="">
<select name="SECTOR" onChange="sectores()" tabindex="1">
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
</select>
</form>