function showhide(id) {
        var ddlcountry = document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_right_GetQuote_5_country');
        var divcountry = document.getElementById(id);
        if (ddlcountry.options[ddlcountry.selectedIndex].value == 'Other') {
            divcountry.style.display = 'block';
        }
        else {
            divcountry.style.display = 'none';
        }
    }
