Basic javascript question. Need someone to point out the bleeding obvious to me ! 
I have a "select" menu on my form. Underneath that I have a textfield. I want the label of the select menu to display in the textfield, when an item is selected from the select menu.
code snippet ......
<script language="JavaScript1.2">
function verifyInput() {
var s;
var s = form1.actid.text;
form1.expTitle.value = s;
}
</script>
<select name="actid" onChange=verifyInput()>
<option value1> label1</option>
<option value2> label2</option>
</select>
<input name="expTitle" type="text" size="32" maxlength="50">
The code above works, but it puts the value of the select menu into the textbox and not the label. how do i change this !!!????