i have the following html code:
<select name="drop1" id="Select1" size="4" multiple="multiple">
<option value="1">item 1</option>
<option value="2">item 2</option>
<option value="3">item 3</option>
<option value="4">item 4</option>
<option value="0">All</option>
</select>
this code is available in a user control, so its id changes when i run the web application. how can i get the selected items from JavaScript on a button click?