I have a in my website, and I have a script in jquery that has this function:
$(\"#multi\").on
You can use :selected selector and :last (or alternatively .last()) this way:
:selected
:last
.last()
$('#multi').change(function() { console.log( $(this).find('option:selected:last').text() ); });
JSFiddle