function MPC_resetToDefaults(theForm){
	for (i = 0; i< theForm.elements.length; i++)
	{
		if (theForm.elements[i].type == 'text')
		{
			theForm.elements[i].value = '';
		} else if (theForm.elements[i].type.indexOf("select") != -1)
		{
			theForm.elements[i].selectedIndex = 0;
		}
	}
}