var specificCountry = 'The United States';	
var specificCountryCode = 'US';

document.observe('dom:loaded', function(){
	$('change-locale').down('a').update(specificCountry).up('p').show();
});

