function fill_regions_from_country(country_field, region_field){
  var country =  jQuery('#'+country_field).val();
  jQuery.post('index-ajax.php', {q : 'assets/snippets/regions.php', country : country, field : region_field},
              function(data) { jQuery('#'+region_field).html(data);}
             );
}
