function dtv_select_change(xId) {
	var dtvObj = document.getElementById(xId);
	var selIndex = dtvObj.selectedIndex;
	if(dtvObj.options[selIndex].value != "null")
		window.location.href = dtvObj.options[selIndex].value;
}

