<select name="addSpecialtyID" onChange="setVal();">
option....
</select>
im trying to set value of hidden text field addSpecialtyID_ to the select addSpecialtyID value, how do i address the select box for its value? thanks
<script>
function setVal() {
document.manageQuotaForm.addSpecialtyID_.value=document.manageQuotaForm.addSpecialtyId.value;
}
</script>
option....
</select>
im trying to set value of hidden text field addSpecialtyID_ to the select addSpecialtyID value, how do i address the select box for its value? thanks
<script>
function setVal() {
document.manageQuotaForm.addSpecialtyID_.value=document.manageQuotaForm.addSpecialtyId.value;
}
</script>