$(document).ready(function()
{ 
	$("#country").bind("change",function() 
	{
		$("#intl_pricing_details").slideUp(500);
		
		$("#loading_image").show(500);
		
		$.ajax(
		{
			type: "GET",
			url: "pricing_ajax.php",
			data: "country=" + $("#country").val(),
			timeout: 10000,
			success: function(data,status)
			{
				$("#loading_image").hide(500);
				
				$("#intl_pricing_details").html("" + data);
				
				$("#intl_pricing_details").slideDown(500);
			},
			error: function(request,textstatus,error)
			{
				/** give them an error message **/		
				if (textstatus === 'timeout')
				{
					$("#intl_pricing_details").html("<p class=\"error\">Sorry, but this service is temporarily unavailable.  Please try again later.  ERROR: T.O.</p>");
				}
				else if (textstatus === 'error')
				{
					$("#intl_pricing_details").html("<p class=\"error\">Sorry, but this service is temporarily unavailable.  Please try again later.  ERROR: G.E.</p>");
				}
				else
				{
					$("#intl_pricing_details").html("<p class=\"error\">Sorry, but this service is temporarily unavailable.  Please try again later.  ERROR: U.E.</p>");
				}
			}
		});			
	});
});
