Gasherez,
 
 
 
<!DOCTYPE HTML>
<html>
<head>
  <title>Untitled</title>
  <meta charset="utf-8">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  <script>
     $(function(){
       var s = $(".select-wishes input:checked"), arr = [];
       s.each(function(indx, el){
         var text = $("[for='"+el.id+"']").text();
         arr.push($.trim(text))});
      alert(arr)
});
  </script>
</head>
<body>
<div class="select-wishes">
 <div class="selected-items"></div>
 <ul>
 <li>
 <label for="with-conditioning">
 <input type="checkbox" name="" id="with-conditioning"> Кондиционер
</label>
 </li>
 <li>
 <label for="with-luggage">
 <input type="checkbox" name="" id="with-luggage" checked="checked"> С собой большой багаж
</label>
 </li>
 <li>
 <label for="with-pet">
 <input type="checkbox" name="" id="with-pet" checked="checked"> С животным
</label>
 </li>
 <li>
 <label for="with-smoking">
 <input type="checkbox" name="" id="with-smoking"> Курить в машине
</label>
 </li>
 </ul>
 </div>
</body>
</html>