Remove Sidebars from page

If you are creating your own theme you could add this to your page.php template file

if(!is_page('999')) { //Page to exclude sidebar from
    dynamic_sidebar('sidebarID'); 
}

Replace 999 with the page ID you wish to exclude, and sidebarID with the sidebar you want to show.