function verifyEpioneForm() {
  var ret = false;
  $('input[name="epioneTos"]').each(function(){
    ret = this.checked;
  });

  if(!ret) {
    alert("Before we can continue, you must agree to the terms and conditions,\n and then click on the check the box under the phone number input.");
  }

  return ret;
}

