Deleting a [Select] List item
Is there an easy method to delete an item in a SELECT list.
I have a list, have the row number in the list that I want to remove, just cant seem to find the syntax to accomplish this...
eg
// followinglist is the SELECT list
//
var followinglist = Tiggzi('following_list');
//
// followingindex is the entry I want to remove
//
var followingindex=followinglist[0].selectedIndex;
//
// Now I need to remove it, but this is not the correct syntax ??
//
followinglist.remove(followingindex);