<form name=frm1>
<SELECT NAME="available_classes" SIZE="1">
<OPTION>carpentry</option>
<OPTION>metal works</option>
<OPTION>electrical works</option>
</SELECT>
</form>
..
..
..
..
<a href="enroll_student.asp?class=document.frm1.available_classes.options(frm1.available_classes.options.selectedindex).text "
alt="Enroll student">Enroll a student</a>
how would i pass the value of select class to this href please?
<SELECT NAME="available_classes" SIZE="1">
<OPTION>carpentry</option>
<OPTION>metal works</option>
<OPTION>electrical works</option>
</SELECT>
</form>
..
..
..
..
<a href="enroll_student.asp?class=document.frm1.available_classes.options(frm1.available_classes.options.selectedindex).text "
alt="Enroll student">Enroll a student</a>
how would i pass the value of select class to this href please?