Hi,
The database field actually supports up to 255 chars so this can be solved.
Edit the file /Survey/SurveyQuestionEdit.aspx
look for this:
<asp:TextBox ID="txtNewOption" runat="server" Columns="39" MaxLength="100"></asp:TextBox>
change it to this:
<asp:TextBox ID="txtNewOption" runat="server" Columns="39" MaxLength="255"></asp:TextBox>
I will do the same in my copy so it will be fixed in the next release.
Hope that helps,
Joe