
window.addEvent('domready', function() {

			// if field has default text ( "Search" ) - change to blank 
			$('zipcode').addEvent('focus', function(){
				if( $('zipcode').getProperty( 'value' ) == 'Zip' ) {
					$('zipcode').setProperty( 'value', '' );	
				}
			});

});
