//what happens when a tq fund is selected from the gift cart
function changeInputText(input, newText, newCode, newEnd)
{
	switchClass(input, "blackText");
	document.getElementById(input).value = newText;
	document.getElementById(input).curGift = new giftObject(newText, newCode, newEnd); //attach a giftobject with the current info to the search field

	dm.remElById("textHolder");
	toggleDisplay("contentSpan");
	getFundValidation( document.getElementById(input).value ); //TO ADD AUTOMATICALLY
}