As simple as this question is. I am a newbie, and need some functionality for a user. If they CHECK the checkbox then the DROP LIST on the right of it is enabled. if UNCHECKED then DISABLE.
Any help would be great. If you want to see how it looks cut-paste the below
---------------------------------------------------------
<form name="form1" method="post" action="">
<input type="checkbox" name="checkbox" value="checkbox">
Check to Enable List / Uncheck to Disable
<select name="select">
<option value="0" selected>Select Please</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</form>
---------------------------------------------------------
Any help would be great. If you want to see how it looks cut-paste the below
---------------------------------------------------------
<form name="form1" method="post" action="">
<input type="checkbox" name="checkbox" value="checkbox">
Check to Enable List / Uncheck to Disable
<select name="select">
<option value="0" selected>Select Please</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</form>
---------------------------------------------------------