function subscription_Validator(theForm)
{

  if (theForm.quantity.value == "")
  {
    alert("Please select your ticket quantity.");
    theForm.quantity.focus();
    return (false);
  }

  return (true);
}

