i have below a form where i would like only one Drop Down Selection box can
be used.
the form does a call to a script to work out the totals of the selected
items.
i have tried to use the javascript: like i have seen in some webpages in
the past, but this did not work either.
i need only D1 or D2 to be used by the visitor, so if they select the value
of D1 to '2' and then select the value of D2 to 3, (the number selected does
not matter, as long as it is more than '0') the D1 value is set back to '0'
and vise-versa.
<select size="1" name="D1"
onchange="javascript:apple=0;form.favorordertableform.orange=0;gettotal()">
<option>0</option>
<option>1</option>
<option>2</option>
<option>3</option>
</select></p>
<p><select size="1" name="D2"
onchange="javascript

range=0;parent.favorordertableform.apple=0;gettotal()">
<option>0</option>
<option>1</option>
<option>2</option>
<option>3</option>
</select></p>