$(document).ready(function()
{
  $('#'+form_name+'_tipo_de_imovel').change(function()
  {
    $('#sub_tipo_imovel_div').load(
      '/ajax_helper/update_subtipo_imovel_list?form_name='+form_name+'&tipo_imovel_id='+this.value,
      { query: this.value + '*' }
    );
  });
});
