I have a pulldown that I want to disable. I would guess that I need to add an attribute to the select element. I tried enabled="false" and it did not work.
<select name="xyz" tabindex="169" enabled="false" size="1">
<option>choice 1</option>
<option>choice 2</option>
<option>choice 3</option>
</select>
<select name="xyz" tabindex="169" enabled="false" size="1">
<option>choice 1</option>
<option>choice 2</option>
<option>choice 3</option>
</select>