$(function(){
	$('.region_select').change(function(){
		var region_id = $(this).val();
		var id = $(this).attr('class').match(/^region_select rs(\d+)$/)[1]
		$.get(
			'/region/get_subregions/'+region_id,
			function(data) {
				var subregion = $('.subregion_select.ss'+id);
				subregion.find('option').remove();
				$(data).find('subregion').each(function(){
					subregion.append($('<option value="'+$(this).find('id').text()+'">'+$(this).find('name').text()+'</option>'))
				});
			},
			'xml'
		);
	});
});
