Not to complicate it more, but we're going to add another language. JavaScript to be more precise.
Code:
<Script Language="JavaScript">
<!--
function dothemath()
{
calcform.answer.value=calcform.number1.value * calcform.number2.value;
}
//-->
</Script>
<form name="calcform">
Number 1: <select name="number1" onChange="dothemath();">
<option value="1">1
<option value="2">2
<option value="3">3
<option value="4">4
<option value="5">5
</select>
Number 2: <select name="number2" onChange="dothemath();">
<option value="1">1
<option value="2">2
<option value="3">3
<option value="4">4
<option value="5">5
</select>
Score: <input type=text name="answer" value="1" size=3>
</form>
You could also make the score a hidden field to just pass it when you do your form post. It's not pretty code... that part is up to you.
Brian.