Is it possible to set limit to multipleselect?
Below is an example code where user can select more than 1 value.
You can use jQuery
$("select").change(function () { if($("select option:selected").length > 3) { //your code here } });