| | This little code will disable the select option in a drop down menu, sometimes people like to add titles to their menu. insted of <select> <option> Pick One </option> <option value="232"> Choise 1 < /option> </select> try <select> <optgroup label="Pick One" title="Pick"> <option value="232"> Choise 1 < /option> </optgroup> </select> with optgroup users can't select Pick One, it is just use as a title |

