window.onload = function() {
	sel = document.getElementById("selfilm");
	sel.onchange = function () {
		index = this.selectedIndex;
		if (this.options[index].value == "")
			return false;
		location.href = this.options[index].value;
	}
}