// STARTSIDAN DROPDOWN

function navigate(sel) {

	if (sel.options[sel.selectedIndex].value) {
	var test = sel.options[sel.selectedIndex].value;
	top.location.href = sel.options[sel.selectedIndex].value;

	}

}


