// JavaScript Document

$(document).ready(function()
{

  	$("#address-field").focus(function(){
		$(this).val('');
		return false;
	});

});
