$(document).ready(function(){
            
            $('#productFinderForm select').uniform();
            
            $('#productByIndustry').change( function() {
                        window.location.href=$(this).val();                                                                                                     
            })
            
            $('#productByProcess').change( function() {
                        window.location.href=$(this).val();                                                                                                     
            })
            
            $('#productByCategory').change( function() {
                        window.location.href=$(this).val();                                                                                                     
            })
            

            $('#storeFinderInput').focus(function(){
                        if(this.value == 'Enter postcode') {
                                    this.value=' '
                        }
            });
            
});
