$(document).ready(function(){
  $('#tarifa_id').change(function(){
    val = $(this).val();
    if(val == "1"){
      $('#nombre_subcategories').val("1");
    }else if(val == "2" || val == "3"){
      $('#nombre_subcategories').val("2");
    }
  });
  $('#tarifa_id').change();
  
  // geo coder d'en JJ
  // Init map
  $('#map_canvas').css('display','block');
  $('.suggestionbox').css('display','block');
  $('#coordenades').css('display','none');
    
  startgeocoder($('#direccio'), $('#suggestionlist'), 'map_canvas',$('#coordenades_latitud'),$('#coordenades_longitud'),$('#starthelper'),$('#selecthelper'),$('#draghelper'),$('#dragendhelper'));
  charcounter($('textarea#descripcio_es'),$('#descripcio_es_counter'));
  charcounter($('textarea#descripcio_en'),$('#descripcio_en_counter'));
});
