js comment obtenir une valeur sélectionnée

$(document).on('change', '#input_id', function() {
    var selected = $('#input_id').val();
});
Darkvent