onload = function() {
	

    /*
    Load the data for the country details DDL
    */
    var countryData = document.createElement('script');
    countryData.setAttribute('type', 'text/javascript');
    countryData.setAttribute('src', 'http://www.knightfrank.fr/php/js/CountryDetails.txt');

    document.getElementsByTagName('head')[0].appendChild(countryData);

    /*
    Load the script the will populate the country list DDL
    */
    var countryScript = document.createElement('script');
    countryScript.setAttribute('type', 'text/javascript');
    countryScript.setAttribute('src', 'http://www.knightfrank.fr/php/js/kfScript.js');

    document.getElementsByTagName('head')[0].appendChild(countryScript);
}