<select name="feature1">
<option value="1">Enable</option>
<option value="0">Disable</option>
</select>
<input type="checkbox" name="feature2" />
<input type="checkbox" name="feature3" />
How do I disable 'feature2' and 'featured3' inputs when 'disable' in 'feature1' is selected?
Thanks