$(document).ready(function()
{
  $('#'+form_name+'_concelho_id').change(function()
  {
    $('#freguesia_div').load(
      '/ajax_helper/update_freguesia_list?show_zona='+show_zona+'&form_name='+form_name+'&concelho_id='+this.value ,
      { query: this.value + '*' }
    );
    $('#zona_div').load(
      '/ajax_helper/update_zona_list?form_name='+form_name+'&concelho_id='+this.value ,
      { query: this.value + '*' }
    );
  });

});