Utilisez JS pour obtenir une valeur sélectionnée

// reference to 'scripts' select list 
// used throughout the examples below
var sel = document.getElementById('scripts');

// display value property of select list (from selected option)
console.log( sel.value );
Careful Cicada