function requiredcc(){

 if($('#depot_position').val()=="------" || $('#depot_position').val()==null || $('#depot_position').val()==''){
  str="<font color='#ff0000'>出発地を選択してください</font>";
  $('#err_depot').html(str);
  $('#err_depot').fadeIn('4000');
  $('#err_depot2').html(str);
  $('#err_depot2').fadeIn('4000');
   return false;
 }

}