naveen,the json file in your application 404s when I try and run here, so i'm not able to run your application.that being said in looking at your code i noticed two things that seemed a little irregular.1. why are you instantiating two different geometry service objects?
gsvc = new GeometryService("http://tasks.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer");
gs = new GeometryService("http://tasks.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer");
2. i think you should either be supplying an anonymous function inline as the callback to difference() or referencing a named function that appears later. right now you're doing both.
gs.difference(geom11,geom1a,function showCutBuffer(graphic1a1){
//should be either
gs.difference(geom11,geom1a,function(graphic1a1){
...
//or
gs.difference(geom11,geom1a,showCutBuffer);
...
function showCutBuffer(graphic1a1)