var shortcut=document.calc
var descriptions=new Array()
var descriptions1=new Array()
var descriptions2=new Array()

descriptions[0]="Select from the Categories drop-down"
descriptions[1]="Airport transfer only"
descriptions[2]="City shopping before airport transfer"
descriptions[3]="City tour (2½ hrs) before airport transfer"
descriptions[4]="City tour (full day) before airport transfer"
descriptions[5]="Transport to field study before transfer"
descriptions[6]="Local field study before airport transfer"
descriptions[7]="Port Aventura before airport transfer"

descriptions1[0]="Select from the Categories drop-down"
descriptions1[1]="Coach departure to home destination"
descriptions1[2]="Local field study before departure"

descriptions2[0]="Descriptions appear here"

function changevalue2(){
if (document.calc.Travel[1].selected) {

document.calc.select_13.style.backgroundColor = '#ffffcc';
document.calc.select_14.style.backgroundColor = '#ffffcc';
document.calc.textarea_7.style.backgroundColor = 'ffffcc';


shortcut.textarea_7.value=descriptions[shortcut.select_14.selectedIndex]


function showtext(){
shortcut.textarea_7.value=descriptions[shortcut.select_14.selectedIndex]
}
}
}
function changevalue3(){
if (document.calc.Travel[2].selected||document.calc.Travel[3].selected) {

document.calc.select_13.style.backgroundColor = '#ffffcc';
document.calc.select_14.style.backgroundColor = '#ffffcc';
document.calc.textarea_7.style.backgroundColor = 'ffffcc';


shortcut.textarea_7.value=descriptions1[shortcut.select_14.selectedIndex]


function showtext(){
shortcut.textarea_7.value=descriptions1[shortcut.select_14.selectedIndex]
}
}
}
function changevalue4(){
if (document.calc.Travel[0].selected||document.calc.select_13[0].selected) {

document.calc.select_13.style.backgroundColor = '#ffff80';
document.calc.select_14.style.backgroundColor = '#ffff80';
document.calc.textarea_7.style.backgroundColor = 'ffff80';
shortcut.textarea_7.value=descriptions2[shortcut.select_14.selectedIndex];


function showtext(){
shortcut.textarea_7.value=descriptions2[shortcut.select_14.selectedIndex];
}
}
}
