I am using jQuery Validation Plugin for form validation and I am not able to validate list/select box
You can use Jquery Validator custom rule.
A similar example is discussed here. The code below is from the example:
// add the rule here
$.validator.addMethod("valueNotEquals", function(value, element, arg){
return arg != value;
}, "Value must not equal arg.");
// configure your validation
$("form").validate({
rules: {
SelectName: { valueNotEquals: "-1" }
},
messages: {
SelectName: { valueNotEquals: "Please select an item!" }
}
});