FYI This is jquery a javascript framework. Here is how to get the value of a select dropdown.
Code:
$("select").change(function(){
alert(this.value);
});
Instead of the alert you might want to set a string to that value and process it. Each dropdown will trigger this.
I do notice that the dropdowns have a default value of one, think that should be zero.