I'm using the plugin jqBootstrapValidation.js to validate my contact form. I need to have a dropdown list where the visitor needs to select an option from the dropdown list. So if the visitor left the dropdown list in its default state, there needs to be a warning message asking the visitor to select an option.
My question is, can I use the jqBootstrapValidation.js to validate selects? Because I don't see selects under the validators in the documentation: https://reactiveraven.github.io/jqBootstrapValidation/
Or do I need to use the plugin jquery.validate.js? As in this asked question here (the last example with the JSFIDDLE): Bootstrap validator- dropdown list
If I do need to use jquery.validate.js, can I still keep all the codes relating to jqBootstrapValidation.js?
I'm a newbie at contact forms, js, php so I would like to keep everything as simple as possible. Thank you!

Yes, You can use the jqBootstrapValidation.js to validate selects, this is a way: You need put value="" required and $("input,select,textarea").jqBootstrapValidation({...