// JavaScript search.js

function choose_land(value) {
	sel = document.getElementById("land");
	for(i=0;i<sel.options.length;i++)
		if(sel.options[i].value == value)
			sel.selectedIndex = i;
	sel.style.backgroundColor = "#CCCCCC";
	window.setTimeout("reset_to_white()", 500);
}

function reset_to_white() {
	sel = document.getElementById("land");
	sel.style.backgroundColor = "#FFFFFF";
}