﻿//Hides verification div and  returns to registration page
function changeDiv(min, max)
{
    document.getElementById(min).style.display = 'none';
    document.getElementById(max).style.display = 'block';
}

//Displays text of selected country
function displayCountry()
{
    var cmb = document.getElementById('Registration.cmbCountry');    
    if (cmb != null)
        document.getElementById('CountryText').innerHTML = cmb.options[cmb.selectedIndex].text;
}