I am using jQuery Validation Plugin for form validation and I am not able to validate list/select box
Or use the element value:
required: function(elm) { if(elm.options[elm.options.selectedIndex].value != "-1") { return true; } else { return false; } }