function genProvince()
{
	$("#showProvince").html('loding...');
	
	var country_id = document.getElementById("country").value;
	
	$.ajax({
   	type: "POST",
   	url: "functions_ajax_jquery.php",
   	data: "action=genprovince&country_id="+country_id,
   	success: function(xml){
	var result_list = [ $("province", xml).text()];
    $("#showProvince").html(result_list.join(''));
   }
 });
	
}
