zk.bloglines.addFix.user.js
// ==UserScript==
// @name Bloglines subscription bookmarklet folder fix
// @include http://www.bloglines.com/sub/*
// @namespace http://zerokspot.com
// @description Fixes a small problem with the bloglines bookmarklet/
// subscription form that prevents people from selecting
// the folder where the feed should be stored.
// ==/UserScript==
/*
* This script is granted to the Public Domain
*/
(function(){
var select = document.forms["subform"].folder;
select.options[0].parentNode.removeChild(select.options[0]);
var newDefault = document.createElement("option");
newDefault.appendChild(document.createTextNode("_TOP_"));
newDefault.setAttribute("value",0);
select.insertBefore(newDefault,select.options[0]);
})();
I can't guarantee that it really works, but at least it does so for me
