function changeValue(input, val1, val2)
{
	if ( input.value == val1 )
		input.value = val2;		
}
