$(document).ready(function() {                  
    // STREET
    $("#street").live('blur', function(){
        street = $('#street').val();
        if (street != "" && street != "Street Address"){
            $('#error_msg').hide();
        }                        
    });

    // RADIUS
    $("#radius_zip").live('blur', function(){
        radius_zip = $('#radius_zip').val();
        if (street != "" && street != "Zip Code"){
            $('#error_msg').hide();
        }                        
    });      

    // CITY
    $("#city").live('blur', function(){
        city = $('#city').val();
        if (city != "" && city != "City"){
            $('#error_msg').hide();            
        }                        
    });

    // ZIP
    $("#zip").live('blur', function(){
        zip = $('#zip').val();
        if (zip != "" && zip != "Enter Exact Zip Code"){
            $('#error_msg').hide();            
        }                        
    });
    
    // STATE
    $("#state_address").live('blur', function(){
        state = $('#state_address').val();
        if (state != "" && state != "Select a State"){
            $('#error_msg').hide();            
        }                        
    });   
    
    // BY NAME

    // FIRST NAME
    $("#first_name").live('blur', function(){
        first_name = $('#first_name').val();
        if (first_name != "" && first_name != "First Name"){
            $('#error_msg_name').hide();       
        }                        
    }); 
    
    // LAST NAME
    $("#last_name").live('blur', function(){
        last_name = $('#last_name').val();
        if (last_name != "" && first_name != "Last Name"){  
            $('#error_msg_name').hide();       
        }                        
    });         
});
