// Basic function to clear text fields once they are clicked on
// for the ticket login and newsletter signups
function clearText(field){

    if (field.defaultValue == field.value) field.value = '';
    else if (field.value == '') field.value = field.defaultValue;

}
