This will do it:
$("#sel").attr("selectedIndex")
The title doesn't quite match the question...
How to get the Index of select->option tag
option.index // javascript
$(option).prop('index') // jquery
index of selected select->option tag:
document.getElementById('sel').selectedIndex // javascript