This is the select:
<select class="nodata" name="makesponsorgamelevel">
<option value="">?</option> //ignored
<option value="red">Red</option> //100000
<option value="green">Green</option> //50000
<option value="blue">Blue</option> //25000
<option value="purple">Purple</option> //10000
<option value="black">Black</option> //5000
</select>
this is the form text field:
<input type="text" class="nodata" size="6" name="makesponsortotalplayers" onKeyPress="return numbersonly(this, event)">
Text field needs to result in a number corresponding
to the color selection from the select list. When the
select list is 'selected' it needs to place the correct
number in the text box (above next to the option).
Is there a script already made to do this? If not, could someone please point me in the direction of a solution?
Thank You
<select class="nodata" name="makesponsorgamelevel">
<option value="">?</option> //ignored
<option value="red">Red</option> //100000
<option value="green">Green</option> //50000
<option value="blue">Blue</option> //25000
<option value="purple">Purple</option> //10000
<option value="black">Black</option> //5000
</select>
this is the form text field:
<input type="text" class="nodata" size="6" name="makesponsortotalplayers" onKeyPress="return numbersonly(this, event)">
Text field needs to result in a number corresponding
to the color selection from the select list. When the
select list is 'selected' it needs to place the correct
number in the text box (above next to the option).
Is there a script already made to do this? If not, could someone please point me in the direction of a solution?
Thank You