The following selects should be mandatory:
<select id="area" class="input-xlarge">
  <option value="0" selected="selected"></option>
  <option value="A">A</option>
  <option value="B">B</option>
  <option value="C">C</option>
  <option value="D">D</option>
</select>
<select multiple="multiple" id="reason" class="input-xlarge">
  <option value="001">reason001</option>
  <option value="002">reason002</option>
  <option value="003">reason003</option>
</select>
But the following code doesn't work:
$("#form").validate({
  rules: {
    "area": {
      required: true
    },
    "reason": {
      required: true
    }
 
    