function changeCurrency(id)
{
	$('#currencydiv').hide();
	$('#currencydiv2').show();

	$.ajax({
	  url: 'currency.php?id='+id,
	  cache: false,
	  success: function(data) {
		location.reload();
	  }
	});
}
