How to change the placeHolder option in jQuery Tokenizer

How to change the placeHolder option in jQuery Tokenizer

I'm using jQuery Tokenizer ( http://loopj.com/jquery-tokeninput/)  in various pages.In plugin It set as Default in "Enter area". Its using in some pages. And am trying to change placeholder text in another some pages.

How to change the place holder option without changing in the plugin js file.

Is it possible?

Changing Code:

<div class="locationBox">
      <input id = "city" class = "city" type="text" />
</div>

Js code:

$(document).ready(function() {
$("#city").tokenInput(inputData
,{ 
preventDuplicates: true,                        
minChars: 0,
defaultInputText: "Enter State",
});

In that above code isn't  working in page load.In page load it takes default plugin placeholder value. but I clicked in Input box after page load above default text(placeholder) is working.

How to debug this error?