function check_subscription_form () {
  var email = document.getElementById('mail').value;

  if (email == null || email == '') {
    alert ('E-mail νε ββεδεν!');
    return false;
  }
}