Couldn't you simply do this through JS?
Code:
<script type="text/javascript">
$("#Yes").click(function() {
$("#selection").attr("disabled", false);
//$("#selection").show();
});
$("#No").click(function() {
$("#selection").attr("disabled", true);
//$("#selection").hide();
});
</script>
Code:
<select name="selection" id="selection" disabled="disabled">
<option value="one potato" selected="selected">One potato</option>
<option value="two potato">two potato</option>
<option value="three potato">three potato</option>
</select>
Bookmarks