Auto-scaling is not a built-in service today, but there are 3rd-party tools that offer this service, such as Paraleap's AzureWatch. You can roll your own as well (and here's a starter sample), but I wouldn't recommend it when starting out, as there are many things to think about, such as:
- Understanding how Windows Azure billing works, and when the hourly meter turns over
- Understanding ramp-up time and when to consider scaling back down without causing up/down server bouncing
Also, to do your own scaling, you'd need to place that code either on-premises or in one of your roles (preferbly its own "manager" role). If in a role, you have to make sure that the management code only runs in one instance (using some type of blob-lock semaphore or something similar) - otherwise you'll have the risk of double-scaling.
I'd take a serious look at AzureWatch to get started: It's a penny per instance per hour, and you'll be up and running very quickly.