// JavaScript Document//clear text box on click
function clearText(field){

if (field.defaultValue == field.value) field.value = '';
else if (field.value == '') field.value = field.defaultValue;

}

function setVisibility(id, value){

document.getElementById(id).style.display=value
	//$(id).css('visibility',value);
}


