function submit_change_country(ajax){
	if(!ajax && (document.forms.change_country)){
	  	document.forms.change_country.submit();
	}else{
		var country_code = jQuery('#current_country  :selected').val();
		var params = 'ajax=true&wpsc_ajax_actions=update_location&country='+country_code;
		var region_code = jQuery('#region :selected').val();
		if(typeof(region_code) != 'undefined'){
			params += '&region='+region_code;
		}
		
		jQuery.post( 'index.php', params, function(returned_data) {  });
		jQuery.post( 'index.php', 'wpsc_ajax_action=update_shipping_price', function(returned_data) { 
			eval(returned_data);
		});
	}
	country_name = jQuery('#current_country  :selected').text();
	region_name = jQuery('#region :selected').text();
	
	jQuery('#wpsc_checkout_form_25').val(country_name);
	jQuery('#wpsc_checkout_form_26').val(region_name);
	
	setTimeout("window.location='http://www.cumparaflori.ro/products-page/checkout/';", 1000);
}
