I am using jQuery Validation Plugin for form validation and I am not able to validate list/select box
Add this in your rule
select:{ required: function(element) { if( $("#select").val() =='-1'){ return false; } else { return true; } } }