function CountryCodesShow(){
        var CountryCodes = document.getElementById('CountryCodes')
        if (CountryCodes.style.display == 'none') {
                CountryCodes.style.display = 'block'
        } else {
                CountryCodes.style.display = 'none'
        }
}
