        function getAreas()
        {
            var selected_province = document.getElementById('accom_town').value;
            if (selected_province != 0)
            {
                document.getElementById('ajax_accom_search').innerHTML = "<select id=\"accom_area\" name=\"area\" style=\"width: 205px;\" disabled=\"disabled\"><option value=\"0\">Loading...</option></select>";
                $.ajax({
                    type: "GET",
                    url: "index.php",
                    data: "comp=accommodation&op=ajax_getareas&popup=xml&town="+selected_province,
                    cache: false,
                    success: function(returned_data) {  
                        document.getElementById('ajax_accom_search').innerHTML = returned_data;                        
                    }
                });
            }
        }
        
        function getTowns()
        {
            var selected_province = document.getElementById('accom_province').value;
            if (selected_province != 0)
            {
                document.getElementById('ajax_accom_town_search').innerHTML = "<select id=\"accom_area\" name=\"area\" style=\"width: 205px;\" disabled=\"disabled\"><option value=\"0\">Loading...</option></select>";
                document.getElementById('ajax_accom_search').innerHTML = "<select id=\"accom_area\" name=\"area\" style=\"width: 205px;\" disabled=\"disabled\"><option value=\"0\">Select an Area...</option></select>";
                $.ajax({
                    type: "GET",
                    url: "index.php",
                    data: "comp=accommodation&op=ajax_gettownss&popup=xml&province="+selected_province,
                    cache: false,
                    success: function(returned_data) {  
                        document.getElementById('ajax_accom_town_search').innerHTML = returned_data;                        
                    }
                });
            }
        }