JQuery erhalten Sie alle ausgewählten Optionen
//looping through options select with jQuery
$("#mySelectID option").each(function(){
var thisOptionValue=$(this).val();
});
Grepper