jquery get element options code example
Example 1: jquery selected option
$( "#myselect option:selected" ).val();
Example 2: jquery get all select options
//looping through options select with jQuery
$("#mySelectID option").each(function(){
var thisOptionValue=$(this).val();
});