$(function() {    
    var location = 'Ort und/oder PLZ';
    
    $('.location').each(function(){
        if(!$(this).val()){
            $(this).val(location);  
            $(this).addClass('grey');
        }
    });
       
    $('.location').focus(function(){
        $(this).val(''); 
        $(this).removeClass('grey');     
    })
    
     $('.location').blur(function(){
  
        if(!$(this).val()){
            $(this).val(location); 
            $(this).addClass('grey'); 
        }  
            
    })
});
