//메뉴구분에 따라 체크박스 해제 후 비활성화 처리
 $("#food_con select").change(function(){
  var val = this.value;
  var target_index = $("#food_con select").index(this);

  if(val==2 || val==3 || val==6){
   $("#food_con input:checkbox").eq(target_index).attr('checked',false);
   $("#food_con input:checkbox").eq(target_index).attr('disabled',true);
  }else{
   $("#food_con input:checkbox").eq(target_index).attr('disabled',false);
  }
 });

Posted by kunoo
,