    function search() {
		f = document.getElementById('hledej')
		f.submit();
		return false;
	}
	
	
	function search_init(destinace,termin,lod) {
		f = document.getElementById('hledej')
		select_option(f.d,destinace);
		select_option(f.t,termin);
		select_option(f.p,lod);
	}
	
	function select_option(sel,opt) {
		for (var i=0; i<sel.options.length; i++) {
			if (sel.options[i].value == opt) {
				sel.selectedIndex = i; break;
			}
		}
	}
    

