
$(document).ready(function(){initCountries();return false;});
function initCountries()
{
updateDisplayCountry("selCountry");
showIdElement("countrySelect",true);
}
function updateDisplayCountry(id)
{
var selCountry = getIdElement(id);
if( selCountry != null )
{
for( var i=0 ; i<selCountry.options.length ; i++ )
{
if( selCountry.options[i].selected )
{
displayCountry(selCountry.options[i].value);
}
else
hideCountry(selCountry.options[i].value);
}
}
return false;
}
function displayCountry(country)
{
if( getIdElement(country) != null )
showIdElement(country,true);
}
function hideCountry(country)
{
if( getIdElement(country) != null )
showIdElement(country,false);
}