I would suggest using the .clone() http://api.jquery.com/clone/method of jquery, to hold a copy of your drop down list, and you can either replace the list when you want to reset the values, or you could iterate through the values in the copy and add them to the existing dropdownlist.
Here is a sample using clone in jquery that does what I explained above.
<html>
<head>
<script src="jquery.js" type="text/javascript">
</script>
<script>
$(document).ready(function(){
//clone the select list
var optionlist = $("#options").clone();
//add the remove funtion event handler to a link
$("#remove").click(function(){
$("#options option:last").remove();
return false; //don't refresh the page
});
// add the reset click event handler to the reset link
$("#reset").click(function(){
//replace the select list with the original clone
$("#options").replaceWith(optionlist);
//clone the new list into the original optionlist variable
optionlist = $("#options").clone;
return false; //don't refresh
});
});
</script>
</head>
<body>
<select id="options" multiple="true" >
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<a id="remove" href="#" >remove</a>
<a id="reset" href="#">reset</a>
</body>
</html>