Jquery Table Edit

Jquery Table Edit

Appreciate if i get the answer
How can i  change (' sub' below nr 4)  from text into select with option which is selecting from db table?
while editing ??

  

 $('#editable_table').Tabledit({

      url:'masrafsave.php',

      columns:{

       identifier:[0, "id"],

       editable:[[3, 'no'], [4, 'sub']]

      },

      restoreButton:false,

      onSuccess:function(data, textStatus, jqXHR)

      {

       if(data.action == 'delete')

       {

        $('#'+data.id).remove();

       }

      }

     });