[Qtip] How destroy definitely a modal windows

[Qtip] How destroy definitely a modal windows

hi,
Is there any way to deallocate a jquery object?

I'm using qTip plugin... Every time the user clicks on link related to a jtip modal window, qtip allocate memory for the modal, but when the modal is closed (by user) the object $('#some_id').qtip() exits anyway.

My situation:

.....

$('#some_id').qtip(
   {
      content: {
         title: {
            text: "Category: "+$('#category').value(),
            button: 'Close'
         },
         text: ' TEXT OF MODAL '
      },







......
)} // end


In the DOM there is a select box: <select id="category"> ... option here ... </select>
I want to display a dynamic text in the modal windows according to the value selected in the select box.
Make it simple, in the code upon, the "dynamic text" is: Category: <option selected>

The problem is that when user allocate the first modal windows, the next modals mantain the values of the first modal windows becuse qtip don't free memory when the modal is closed.......

Is there any way to deallocate a jquery object?

can you help me, please.... sorry my english