function checkbeforesubmit_search() {
	var s;
    s = '';
    if (document.inputform_search.company.value == '' || document.inputform_search.company.value == ' ' || document.inputform_search.company.value == 'Enter Company Name') { s = s + 'Company Name is a required field\n'; }
    //if (document.inputform_search.city.value == '' || document.inputform_search.city.value == ' ' || document.inputform_search.city.value == 'Enter City') { s = s + 'City is a required field\n'; }
    if (document.inputform_search.CountrySelect.value == 'Select Country') { s = s + 'Country is a required field\n'; }
    if (document.inputform_search.city.value == 'Enter City') { document.inputform_search.city.value = ''; }

    if (s != '') {
        alert(s);
        return false;
    }
}
