function DataValidBestellung()
{
  var allValid = true;
  var error_str =""; 


if (document.formSelectCountry.selectCountry.value.length == 0 ) 
	{
		allValid = false
		error_str = error_str + "Bitte wählen Sie Ihr Land aus\n"
    }

 if (!allValid)
	{
		alert(error_str);
		return allValid
	}
 else
	{
		document.formSelectCountry.submit();
	}
}
