diff --git a/application/views/mobile_first/ah-tour-list-form.php b/application/views/mobile_first/ah-tour-list-form.php
index 0f28d8b3..18a18057 100644
--- a/application/views/mobile_first/ah-tour-list-form.php
+++ b/application/views/mobile_first/ah-tour-list-form.php
@@ -147,7 +147,41 @@
-
+
+
+ When would you travel?
+
+
+
Select your travel data.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Select your travel date.
+
+
+
@@ -475,178 +509,221 @@
-
+ if (realnameVal === '') {
+ realnameErrEl.style.display = '';
+ result = false;
+ }
+ if (emailVal === '') {
+ emailErrEl.style.display = '';
+ result = false;
+ } else {
+ var emailPattern = /^[\w\-\.]+@[\w\-\.]+(\.\w+)+$/;
+ if (!emailPattern.test(emailVal)) {
+ emailVerifyErrEl.style.display = '';
+ result = false;
+ }
+ }
+ if (contactVal === '') {
+ contactErrEl.style.display = '';
+ result = false;
+ }
+ return result;
+}
+
\ No newline at end of file
+ });
+ $('#minusInfant').click(function () {
+ if (infantNumber > 0) {
+ infantNumber--;
+ $infantNumberInput.val(infantNumber);
+ }
+ });
+ })
+
\ No newline at end of file