
function changeEvent( choice ) {
	if(choice) {
		$('searchKeyField').style.display = "none";
		$('searchKeyField').value = "";
	}
	else {
		$('searchKeyField').style.display = "inline";
	}
}