function goto(loc){
	window.location = loc;
}

window.onload = function(){
	var sel = document.getElementById("ql");
	sel.onchange = function(){
		if(this.value != ""){
			goto(this.value);	
		}
	};
	
};