Hi
I'll give the answer here rather than by attachment.
The script needs to be:
<script>
function gradORnot(val,valforon,showme)
{
if (val == valforon) {
showme.style.visibility='visible';
}
else {
showme.style.visibility='hidden';
}
}
</script>
The two radio buttons need to be:
<td><input type="radio" name="grad" value="Undergraduate" onclick='gradORnot(this.value,"Undergraduate",divtounhide)'>
Undergraduate</td>
<td><input type="radio" name="grad" value="Graduate" onclick='gradORnot(this.value,"Undergraduate",divtounhide)'>
Graduate</td>
I used variables rather than hardcoding the names in the script because you can re-use the script this way.
Enjoy.
Trevor