// check an set default values for dropdown elements, called as bodyOnLoad 
function checkDefaultFormValue (){
    if (document.forms.location != undefined ) {
		if (document.forms.location.countryid != undefined || document.forms.location.countryid != null ) {
			setLocSelection(document.forms.location.countryid);
		}
	}
	if (document.forms.lawyer != undefined ) {
		if (document.forms.lawyer.countryid != undefined || document.forms.lawyer.countryid != null ){
				setLawSelection(document.forms.lawyer.countryid);
		}
	}

}
