
function updateCountryPrice()
{
	var theLabel = document.getElementById('RateLookup_LandingPages1_lblPrice');
	var theCombo = document.getElementById('RateLookup_LandingPages1_CountryDD');
	//var iframe = document.getElementById('rateListIFrame');
	var theValue = theCombo.value;
	
	if ( document.getElementById( 'RateLookup_LandingPages1_rdoLocalAccess' ).checked )
	{
		theValue = theValue - 1.0;
		//if (iframe.src != 'ratelist.aspx') iframe.src = 'ratelist.aspx';
	}
	else 
	{
	//iframe.src = 'ratelist.aspx?toll=1';
	}
	if ( theValue < 100.0 )
	{
	theLabel.innerHTML = theValue + "&cent;";
	}
	else
	{
	theLabel.innerHTML = "$" + (theValue / 100.0);
	}
}
