$(document).ready(function(){
	$('.zip').each(function(index){
		var textval = $(this).attr('value');

		$(this).focus(function(){
		
			if($(this).attr('value') == textval){
				$(this).attr('value', '');
			}
		});

		$(this).blur(function(){
			if($(this).attr('value') == ''){
				$(this).attr('value', textval);
			}
		});
	 });
});
