
function setSelection(el,id) {
	for (var i=0;i<el.options.length;i++) 
		if (el.options[i].value==id) {
			el.selectedIndex=i;
			break;
		}
}

function initForm() {
	popDepartures();
	}
