I got a select tag with some options in a HTML form: (the data will be collected and processed using PHP)
Testing:
What about html data attributes? That's the easiest way. Reference from w3school
In your case
$('select').on('change', function() { alert('value a is:' + $("select option:selected").data('valuea') + '\nvalue b is:' + $("select option:selected").data('valueb') ) });
One Two Three