ну вот, набрасал что-то...
только работает с цифрами, а с текстом - нет.
т.е.
это работает
if (l1=="2")
document.formText.t1.value="235";
а это не работает
if (l1=="text")
document.formText.t1.value="235";
Вот весь код:
<script>
function uklon()
{
var objSel = document.getElementById("SelectId");
l1=objSel.selectedIndex
if (l1=="1")
document.formText.t1.value="4567";
document.formText.t1.style.display="inline";
if (l1=="2")
document.formText.t1.value="235";
if (l1=="text")
document.formText.t1.style.display="none";
}
</script>
<form name="formText">
<select onChange="uklon()" id="SelectId">
<option >text</option>
<option >1</option>
<option >2</option>
<input type="text" name="t1" value="">
</form>
почему?