function selectLocation(index){var dropdownLocations=document.getElementsByName("allocation")[0];
var options=dropdownLocations.getElementsByTagName("option");
for(var i=0;
i<options.length;
i++){if(options[i].getAttribute("value").indexOf(index)!=-1){dropdownLocations.selectedIndex=i;
break
}}return false
};