function resetFields() {
	var fieldName = new Array()
	
	fieldName['FirstName'] = 'First Name';
	fieldName['LastName'] = 'Last Name';
	fieldName['Email'] = 'Email Address';
	fieldName['Phone'] = 'Phone Number';
	fieldName['AccountNumber'] = 'Account Number';

	
	$("#billing-question-form input").each(function(){
		currField = $(this).attr('name'); 
		$(this).val(fieldName[currField]);
	});
	
	$("#billing-question-form textarea").val('Please Leave your comments here.');
}

function validateForm() {
	alert('validating form...');
}

$("input, textarea").focus(
 function()
 {
  // only select if the text has not changed
  if(this.value == this.defaultValue)
  {
   this.select();
  }
 }
);


