function changeBrowseBySelect(targetUUId){
	var searchCollection=eval('browseBy' + targetUUId);
	var monthSelectBox=document.getElementById("BrowseByMonth" + targetUUId);
	var monthSelectedIndex=monthSelectBox.selectedIndex;
	var yearSelectBox=document.getElementById("BrowseByYear" + targetUUId);
	var yearSelectedValue=yearSelectBox.options[yearSelectBox.selectedIndex].value;
	
	// i clear out the current values for the Month select box
	for(i=monthSelectBox.options.length-1; i > 0; i--){
		monthSelectBox.options[i]=null;
	}
	// i re-populate the Month select box
	for(j=0; j < searchCollection[yearSelectedValue].length; j++){
		monthSelectBox.options[j]=new Option(searchCollection[yearSelectedValue][j].text, searchCollection[yearSelectedValue][j].value);
	}
	// i maintain the current selectedIndex for the Month select box
	monthSelectBox.selectedIndex=monthSelectedIndex;
}