Put Following in the jquery.alphanumeric.js. Then use $(element).removeNumeric(); to disable the numeric method
$.fn.removeNumeric = function()
{
return this.data("numeric.decimal", null).data("numeric.negative",
null).data("numeric.callback", null).unbind("keypress",
$.fn.numeric.keypress).*unbind("keyup",
$.fn.numeric.keyup)*.unbind("blur", $.fn.numeric.blur);
}