Search query with Ajax

This is a javascript issue. You have to prevent form submission to stop the page from reloading. See event.preventDefault() in jQuery docs.

jQuery("#Submityourskill").click(function(event){
    event.preventDefault();
    // the rest of your code
});