$(document).ready(function(){
    $(".fp_dropdown").css("display","none");
    $(".country_label").css("display","inline");

       $("#other_countries").click(function(event){
         $(".country_label").css("display","none");
         $(".fp_dropdown").css("display","inline");
         event.preventDefault();
       });

       $(".fp_input").click(function(e) {
        if($(this).val() == 'Postcode e.g. CB4') { $(this).val(""); }
         $(this).css("color","#333");
         e.preventDefault();
       });

       $(".fp_input").blur(function (e) {
           if($(this).val() == '') { $(this).val("Postcode e.g. CB4"); $(this).css("color","#999") }
       });

    $("#search_container").bg('5px');
});