get value of selected option jquery by id code example
Example 1: get value of selected checkbox jquery
$('#checkbox_id:checked').val();
//if checkbox is selected than gets its value
Example 2: get id value of html dropdown in jquery
$('#dropDownId :selected').text();