function selectChange(obj) {

    var destination = obj.options[obj.selectedIndex].value;

    var tgt = obj.options[obj.selectedIndex].getAttribute('tgt');



    if (destination) {

    	if (tgt) {

    		window.open(destination, tgt);

    	} else {

	    	location.href = destination;

    	}

    }

}

