function clearcombo(oSelect){
	for (var i=oSelect.options.length-1; i>=0; i--){
		oSelect.options[i] = null;
	}
	oSelect.selectedIndex = -1;
}

function reFill(oChild, oMake){
	//alert('Hello');
	clearcombo(oChild);
	
	oChild.options[oChild.options.length] =
						new Option('- Any -', '', false);   

	//Populate Child Select	
	for (var i = 1; i < eval("a" + oChild.id + "s.length"); i=i+2){
		if (eval("a" + oChild.id + "s[" + i  + "]") == oMake.options[oMake.selectedIndex].value)
		{
			oChild.options[oChild.options.length] =
				new Option(eval("a" + oChild.id + "s[" + (i - 1) + "]"), eval("a" + oChild.id + "s[" + (i - 1) + "]"), false);
		}
	}
	
	for (var i=oChild.options.length-1; i>=0; i--){
		if(oChild.options[i].value == eval("selected" + oChild.id)){
			oChild.selectedIndex = oChild.options[i].index;
		}
	}
	
	if(oChild.selectedIndex == -1)
	{
		oChild.selectedIndex = 1;
	}
	
	return true;
}