function check() {
 if (document.profile.xtitle.value=="-1") {
  document.profile.xtitle.focus();
  alert("Select TITLE, please!");
  return false;
 }
 if (document.profile.xname.value=="") {
  document.profile.xname.focus();
  alert("Fill in FIRST NAME, please!");
  return false;
 }
 if (document.profile.xsurname.value=="") {
  document.profile.xsurname.focus();
  alert("Fill in LAST NAME, please!");
  return false;
 }
 if (document.profile.xemail.value=="") {
  document.profile.xemail.focus();
  alert("Fill in E-MAIL, please!");
  return false;
 }
 if (document.profile.xgender.value=="-1") {
  document.profile.xgender.focus();
  alert("Select GENDER, please!");
  return false;
 }
 if (document.profile.xrus_read.value=="-1") {
  document.profile.xrus_read.focus();
  alert("Select ABILITY TO READ IN RUSSIAN, please!");
  return false;
 }
 if (document.profile.xstate.value=="-1") {
  document.profile.xstate.focus();
  alert("Select STATE, please!");
  return false;
 }
 if (document.profile.xpostcode.value=="") {
  document.profile.xpostcode.focus();
  alert("Fill in POSTCODE, please!");
  return false;
 }
 if (document.profile.xfreq.value=="-1") {
  document.profile.xfreq.focus();
  alert("Select FREQUENCY, please!");
  return false;
 }
 if (document.profile.xtype.value=="-1") {
  document.profile.xtype.focus();
  alert("Select PREFERRED E-MAIL FORMAT, please!");
  return false;
 }
 document.profile.save.value="Wait!";
 document.profile.save.disabled=true;
}
