Say I have a simple select element looking like this:
<select onfocus="somefunction()">
<option>Monday</option>
<option>Tuesday</option>
<option>Wednesday</option>
</select>
How would I create "somefunction()" such that it makes the select form element drop down, as if I had clicked on it?