select option value jquery

JavaScript
BY LOVE
$("#Id option:selected").text()$("select.country").change(function(){
  var selectedCountry = $(this).children("option:selected").val();
  alert("You have selected the country - " + selectedCountry);
});$( "#myselect option:selected" ).val();$( "#myselect option:selected" ).text();
// => "Mr"
$('.selDiv option:eq(1)')
Source

Also in JavaScript: