hi and thanks for answer
you were right about that funcion so I just got deleted it and replaced with different one.
now show/hide div works so its half way, the grade function dont work corectly so any help appreciated here 
Code:
<script type="text/javascript">
function grade (r1, r2, r3, total) {
var r1 = document.getElementById("web").value;
var r2 = document.getElementById("pr").value;
var r3 = document.getElementById("ics").value;
total = ( (r1 + r2 + r3) /3 ) ;
}
//-->
</script>
<body>
<input type="text" name="grade" id="grade" value="" size="2" readonly="readonly">
hello student1
<form id="FormName" action="blah.php" method="get" name="FormName">
<select name="selectName" size="1" onchange="showDiv(this.value);">
<option value="">Choose semester</option>
<option value="one">first</option>
<option value="two">second</option>
</select>
</form>
<p id="one" class="hiddenDiv" form name="semester1" action"#">
whats your scores in these modules?</br>
Web developement:
<label> <input type = "radio" name = "web"
value = "fail" /> 0-39 </label>
<label> <input type = "radio" name = "web"
value = "59" /> 40-59 </label>
<label> <input type = "radio" name = "web"
value = "75" /> 60-75 </label>
<label> <input type = "radio" name = "web"
value = "89" /> 76-89 </label>
<label> <input type = "radio" name = "web"
value = "100" /> 90-100 </label>
</br></br>
Programming: <label> <input type = "radio" name = "pr"
value = "fail" /> 0-39 </label>
<label> <input type = "radio" name = "pr"
value = "59" /> 40-59 </label>
<label> <input type = "radio" name = "pr"
value = "75" /> 60-75 </label>
<label> <input type = "radio" name = "pr"
value = "89" /> 76-89 </label>
<label> <input type = "radio" name = "pr"
value = "100" /> 90-100 </label>
</br></br>
Interactive case study: <label> <input type = "radio" name = "ics"
value = "fail" /> 0-39 </label>
<label> <input type = "radio" name = "ics"
value = "59" /> 40-59 </label>
<label> <input type = "radio" name = "ics"
value = "75" /> 60-75 </label>
<label> <input type = "radio" name = "ics"
value = "89" /> 76-89 </label>
<label> <input type = "radio" name = "ics"
value = "100" /> 90-100 </label> </br>
<input type = "button" name = "submit"
onclick="grade(total)" value="submit" name="submit" type="submit" />
these button should calculate total /average and display it on readonly box
Bookmarks