jQuery obtenha todas as opções selecionadas
//looping through options select with jQuery
$("#mySelectID option").each(function(){
var thisOptionValue=$(this).val();
});
Grepper