Hey guys,
I'm hoping this isn't anything complicated. I don't know any javascript, but I think it can be done with it.
Basically what I need is on select option to change the value of another selection option. More specifically:
when a user selects a time from the first option, I want the second option to automatically add one hour to the next drop down option. For this example, if the user selects 9:00 from the first drop down list, I want the second drop down list to auto change its value to 10:00
[B]TIME FROM[/B]
<select>
<option>7:00</option>
<option>8:00</option>
[B]<option>9:00</option>[/B]
<option>10:00</option>
<option>11:00</option>
<option>12:00</option>
[B]TIME FROM[/B]
<select>
<option>7:00</option>
<option>8:00</option>
<option>9:00</option>
[B] <option>10:00</option>[/B] automatically change to add ONE HOUR after the initial selection.
<option>11:00</option>
<option>12:00</option>
Is this something that can be done easily with Javascript?
Any help is greatly appreciated.
Thank you