Actualizar div con jQuery ajax response html

Estoy tratando de actualizar un div con el contenido de una respuesta html ajax. Creo que tengo la sintaxis correcta, sin embargo, el contenido div se reemplaza con la respuesta completa de la página HTML, en lugar de solo la div seleccionada en la respuesta html. ¿Qué estoy haciendo mal?

    <script>
        $('#submitform').click(function() {
            $.ajax({
            url: "getinfo.asp",
            data: {
                txtsearch: $('#appendedInputButton').val()
            },
            type: "GET",
            dataType : "html",
            success: function( data ) {
                $('#showresults').replaceWith($('#showresults').html(data));
            },
            error: function( xhr, status ) {
            alert( "Sorry, there was a problem!" );
            },
            complete: function( xhr, status ) {
                //$('#showresults').slideDown('slow')
            }
            });
        });
    </script>