function getCosts() {
	var country = $("#shipp_country").val();
	var subtotal = $("#subtotal_inp").val();
	
	$.post("/process.php",{country: country, subtotal: subtotal, action: "getShipping"},
		function(data){
		var str = data.split("|");
		$("#sub_total").html("&pound;"+subtotal);
		$("#shipping_cost").html("&pound;"+str[0]);
		$("#total").html("&pound;"+str[1]);
		$("#shipping_costs_inp").val(str[0]);
		$("#total_costs_inp").val(str[1]);
	});
};

function copyDetails() {
	
}
