another problem with list

another problem with list

Hi there, hope you got an amazing christmas gift. this is my problem:
I have a year list, when I click on an element of list, I send the data by ajax to php, and refresh the page with new data. this is working perfetcly. 
On my list I start with a simbol near the current year. If I click on different year I would that the simbol apper only in the year that I clicked. 
I can't achive this. 
  1.     <ul class="dropdown-menu">
  2.                                     <li class="header">Esercizio Contabile</li>
  3.                                     <li class="esercizio">
  4.                                          <a href="#">
  5.                                             <i class="fa text-aqua"></i> 2018
  6.                                         </a>
  7.                                     </li>
  8.                                     <li class="esercizio">
  9.                                         <a href="#">
  10.                                             <i class="fa text-aqua"></i> 2017
  11.                                         </a>
  12.                                     </li>
  13.                                     

  14.                                 </ul>
jquery code:
  1.       $(function(){
  2.                var current_year = (new Date).getFullYear();
  3.                var year;
  4.             $( "li.esercizio" ).each(function( index ) {
  5.              year =  $( this ).text();
  6.          if (year===current_year){
  7.          $(".dropdown-menu .fa-check-circle").removeClass("fa-check-circle");
  8.           $(this).find('i').addClass('fa-check-circle');
  9.           }
  10.             
  11.              });

  12.              
  13.                $('.esercizio').click(function(){
  14.                
  15.                    year = $(this).text();
  16.                 
  17.                   $.ajax({
  18.                       headers:{
  19.                           'X-CSRF-Token':$('meta[name="_token"]').attr('content')
  20.                       },
  21.                       type:'post',
  22.                       url : 'eserciziofiscale',
  23.                       data:{anno:year},
  24.                       dataType: "text",
  25.                       success: function(data){
  26.                       
  27.                      $( "li.esercizio" ).each(function( index ) {
  28.                                 var value = $(this).text();
  29.                               
  30.                     if (year===value){
  31.                          $(".dropdown-menu .fa-check-circle").removeClass("fa-check-circle");
  32.                          $(this).find('i').addClass('fa-check-circle');
  33.                         }
  34.             
  35.                         });
  36.                      
  37.                              window.location.replace('dashboard');
  38.                     
  39.                       }
  40.                   });
  41.                   
  42.                   
  43.                });
  44.             });

Thanks for help