.pas {
    display: inline-block;
    background: url(/img/Icon/eye-closed.png) no-repeat 222px;
}$(document).ready(function(){
        $(".pas").click(function(){
            $(".pas").css('background','url(/img/Icon/eye-opened.png) no-repeat 222px');
        });
});  
  
  .eyes {
  background-image: url(img/Icon/eye-opened.png);
}
.eyes-closed {
  background-image: url(img/Icon/eye-closed.png);
}$(document).ready(function() {
  $('.eyes').click(function() {
    $(this).toggleClass('eyes-closed');
  });
});