I'd like to add, If you want to target a specific <select>
You can also pass the container element so that <options> from only that element will be selected.
// For user with events like .on("change") etc.
console.log($("option:selected", this).attr("data-lat"));
OR
console.log($("option:selected", "#areas").attr("data-lat"));