function getAmazonSearchBox()
{
	var my_country = geoip_country_code();
	//alert('Your country code is ' + my_country);
	
	if (my_country.toUpperCase() == 'CA')
	{
		$('#amazon-us').empty();
	}
	else
	{
		$('#amazon-ca').empty();	
	}
}