Lots of good reasons above to change languages because languages are different. I'm going to mention times I changed from one language to a very similar language.
Started out writing shell scripts in sh with plenty of sed and awk. Switched to ksh88 when I worked for phone companies; not much change. Then, when ksh93 was available, switched in earnest. Reason: sh compatible still works for 90% of scripts, but when extra power is needed, ksh93 is there. I never need or use awk any more.
Second example: Learned Icon in school around 1990. Still think Icon has the best string-processing model ever invented. Very good data structures for sequences, sets, tables. But Icon has poor libraries, poor integration with OS, and can't be extended. Still worth it for string processing and powerful search capability. But by 2000, Lua is powerful enough to have first-class functions, good integration with OS, great extensibility, and very good string processing. Essentially the same data structures as Icon, but a simpler design. Not as good at strings as Icon, but way better than awk, perl, and the rest of the regexp crowd. By 2005 I discover I have not written a new Icon program in 6 years. Now in 2008 I am replacing legacy Icon code with new Lua code.
Third example: Modula-3. Used M3 for a major project around 1990-1992, shortly after it was invented. Still the best design I have ever seen for writing large systems programs. Superb ability to have both safe and unsafe code in the same program. But Digital has no idea how to promote a language, in 1995 Sun rolls out Java, by 2000 it is clear that Modula-3 is dead. At the same time, systems code has become a tiny fraction of what I do. So now when I have to do it, it is back to the C I learned in 1984.