function changeLocation(menuObj) {
var i= menuObj.selectedIndex;
if(i>0){
window.location = menuObj.options[i].value;
}
}
