Given the following:
My option
Suppose you have many selects. This can do it:
$('.selectClass').change(function(){ var optionSelected = $(this).find('option:selected').attr('optionAtribute'); alert(optionSelected);//this will show the value of the atribute of that option. });