i have multiple feeds in my blog and i want my subscribers to choose only the feed they are interested to subscribe rather then subcribing the whole blog. Is it possible to give select options on default feedburner subscription form??? something like this
<form class="email-form" onsubmit="window.open('document.email-form.menu.options[document.email-form.menu.selectedIndex].value;return false', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" target="popupwindow" method="post" action="http://feedburner.google.com/fb/a/mailverify">
<input class="email" width="200px" type="text" onblur="if (this.value == '') {this.value = 'enter your email...';}" onfocus="if (this.value == 'enter your email...') {this.value = '';}" value="enter your email..." name="email">
<select name="menu" value="ALL">
<option value="http://feedburner.google.com/fb/a/mailverify?uri=oranges">ORANGES</option>
<option value="http://feedburner.google.com/fb/a/mailverify?uri=apples">APPLES</option>
<option value="http://feedburner.google.com/fb/a/mailverify?uri=wine">WINE</option>
</select>
<input type="hidden" value="oranges" name="uri"/>
<input type="hidden" value="apples" name="uri"/>
<input type="hidden" value="wine" name="uri"/>
<input type="hidden" value="en_US" name="loc">
<input class="submitbt" type="submit" value="Submit" name="submit">
</form>
i dont know what i am doing wrong , may be iam not defining the "uri" correctly or something wrong in onsubmit window.open function, please advise....
