It's a configuration setting, which can viewed and changed using sp_configure.
See "max text repl size option" in BOL.
-- View your current settings
exec sp_configure
-- Change the max text/image size for replication
exec sp_configure 'max text repl size (B)', max_text_size_in_bytes
-Eddie