function clearInputField( attribute ) {
  if (attribute.value == attribute.defaultValue ) {
    attribute.value = "";
  }
}

function confirmSubmit( ) {
  return confirm( "Are you sure you wish to submit this claim?" );
}