selected option label jquery code example
Example 1: selected option attribute jquery
$('#location').find('option:selected').attr('myTag');
Example 2: jquery selected label option
$('select option:selected').text();
$('#location').find('option:selected').attr('myTag');
$('select option:selected').text();