It is not possible for javascript to "click" on an element (u can trigger the attached onclick
event, but you can't literally click it)
To view all the items in the list, make the list a multiple
list and increase its size, like such:
<select id="countries" multiple="multiple" size="10">
<option value="1">Country</option>
</select>