Seleccione Onchange jQuery Obtenga el atributo de datos de opción seleccionada
$('#country').on('change', function(){
let id = $(this).find(':selected').data('id');
console.log(id);
});
Newbie Programmer