function setMinCost(elem)
{
	if(elem)
	{
		if(document.f1)
		{
			if(document.f1.ruth9)
			{
				if(document.f1.ruth9.options)
				{
					if (elem.selectedIndex != -1)
					{
						var val=parseInt(elem.options[elem.selectedIndex].value);
						for (var i = document.f1.ruth9.options.length; i >= 0; i--)
						{
							if(document.f1.ruth9.options[i])
							{
								if(val >= parseInt(document.f1.ruth9.options[i].value))
								{
									document.f1.ruth9.remove(i);
								}
							
							}
						}
					}
				}
			}
		}
	}
}
