function clearContents(element) {
	if (element.value == 'Centre Com is unable to provide Authority To Leave without a signature or for couriers to call prior to delivery. These requests are currently not possible.'){
		element.value = '';
		element.style.color ='#666666';							 
	}
}

function loadContents(element){
	if (element.value ==''){							 
		element.value = 'Centre Com is unable to provide Authority To Leave without a signature or for couriers to call prior to delivery. These requests are currently not possible.';
		element.style.color ='#666666';							 
	} else {
		element.style.color ='#000000';
	}
}
