Here's what you need:
form_tag( { :controller => :magic, :action => :search, :method => post }, { :remote => true } ) do ....
Its sort of a bad design, but the Rails form_tag methods require TWO hashes - the url_for options hash, and the regular options hash. This has generated much confusion for many Rails programmers. If you don't add the delineating hash boundaries, all of the options get passed to url_for(), ruining the :remote => true.
This will add data-remote="true" to your form (to be used with unobtrusive javascript, as others have mentioned). From there you need to create the appropriate AJAX to binding to do the request.
Though really you should be using a named route like magic_search_path instead of the controller/action parameters.