Drupal.behaviors.vote = function(context) {
  $('#decisions-selection-voting-form').submit(function() {
    if($('#decisions-selection-voting-form input.form-checkbox:checked').length > 2) {
      $('div.decisions_selection_error').html('You may submit up to 2 choices.');
      return false;
    }
  });
}

