diff --git a/application/views/orders/tailormade.php b/application/views/orders/tailormade.php
index 94c57f5e..f6339cc9 100644
--- a/application/views/orders/tailormade.php
+++ b/application/views/orders/tailormade.php
@@ -1327,7 +1327,7 @@ right: 5px;">
-
Select your travel date and trip length (days).
+
Select your estimated travel date and trip length (days).
@@ -2263,19 +2263,19 @@ $(function () {
var selectedTripDate = e.currentTarget;
selectedExpectedDate = selectedTripDate.id;
if (selectedTripDate.id === 'exact') {
- $tripDateDesc.text('Select your travel date and trip length (days).');
+ $tripDateDesc.text('Select your estimated travel date and trip length (days).');
$dateSelectionBlock.show();
$expectedTravelDateBlock.hide();
$expectedMonth.hide();
$expectedDate.show();
} else if (selectedTripDate.id === 'approximate') {
- $tripDateDesc.text('Select your travel date and trip length (days).');
+ $tripDateDesc.text('Select your estimated travel date and trip length (days).');
$dateSelectionBlock.show();
$expectedTravelDateBlock.hide();
$expectedDate.hide();
$expectedMonth.show();
} else if (selectedTripDate.id === 'yet') {
- $tripDateDesc.text('Select your trip length (days).');
+ $tripDateDesc.text('Select your estimated trip length (days).');
$dateSelectionBlock.hide();
$expectedTravelDateBlock.show();
}