diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index da494b4..d409431 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -3,6 +3,7 @@ X-editable changelog
        
 Version 1.0.2 wip
 ----------------------------   
+[enh] new input type: checklist (vitalets)      
 [enh] updated docs: inputs dropdown menu, global templates section (vitalets)      
                             
 
diff --git a/src/inputs/checklist.js b/src/inputs/checklist.js
index 491b095..4bd634a 100644
--- a/src/inputs/checklist.js
+++ b/src/inputs/checklist.js
@@ -11,9 +11,9 @@ $(function(){
     $('#options').editable({
         value: [2, 3],    
         source: [
-              {value: 1, text: 'Active'},
-              {value: 2, text: 'Blocked'},
-              {value: 3, text: 'Deleted'}
+              {value: 1, text: 'option1'},
+              {value: 2, text: 'option2'},
+              {value: 3, text: 'option3'}
            ]
         }
     });