The Tip you are using: ASP.NET MVC Tip #41 – Create Cascading Dropdown Lists with Ajax from Stephen Walther was not done with MVC Realease 1.0
As such, it works fine with the downloaded project (after fixing some small issues), but when the you try to incorporate into MVC Release 1.0 things break.
For example: in the downloaded project, the scripts are in the Content Folder, in Release 1.0, the scripts are in the Scripts folder.
Also some (if not all) of the *.js files in the release changed from the bets and CTPs. This may be a problem too.
I downloaded his project (fixed a couple of minor issues), and it worked fine within that project (the *.js files).
For Example: I Fixed the following:
CHANGE: \Views\Home\index.aspx
Car Make:
<%= Html.DropDownList("--Select Make--", "Makes") %>
TO:
Car Make:
<%= Html.DropDownList("Makes", (SelectList)ViewData["Makes"], "--Select Make--")%>
So as you see, there are some issues.
These type problems with tutorials and blogs are abundant; everyone wants to be considered an "Expert" on new technology being released so they write tutorials on betas and CTPs. The result is that the "Expert" will have stuff that doesn't work with the final release.
What you need to find is a Professional that has posted tutorials. A Professional will ensure that their tutorials work. What I mean by a professional is a professional trainer in that area of technology.
Stephen Walther has one of the better blogs and a lot of good stuff, but remember that he is a Microsoift Evangelist. He authors books on MS technology so he needs to be active in the blog world so he puts some good stuff out on leading edge technology. This keeps him deemed as an expert so his books can sell.
Just remember, regardless of the "Expert", there will be inaccuracies in blogs/writings (based on betas and CTPs) when you try to use the information in a final release.