selected dropdown jquery code example
Example 1: jquery: get selected option of the drop down list
$('#ddlID').val();
$('#ddlID').text();
Example 2: jquery dropdown select
$("#element-id").val('the value of the option');
$('#ddlID').val();
$('#ddlID').text();
$("#element-id").val('the value of the option');