Here is my select box:
<select id="category">
<option value="">Pick a choice!</option>
<option value="">choice1</option>
<option value="">choice2</option>
<option value="">choice3</option>
<option value="">choice4</option>
</select>
I want the Pick a choice!
option to be removed when the user click on the select box. If the user click anywhere else, the Pick a choice!
option come back. I don't want the user to be able to pick the Pick a choice!
option. What should I do?