//for the homepage and searches
//adds a destination chosen from the destinationlist page to the dropdown
		
		//add destination to dropdown list	
		function destadd()
			{
				var listobject = document.SearchForm.destinationcode;

				var doc=document.SearchForm;
				var x = listobject.options[listobject.selectedIndex].value;

				var i = x.indexOf("--");
                if (i > 0) {
    				listobject.options[i].value = doc.destcodetoadd.value;
    				listobject.options[i].text = doc.desttoadd.value;
                }
			}
			



