Fixing Tmobile's activation form

I was in the process of porting my home phone number to Google Voice and using Obi to connect to my home phone. For those of you who have not heard of it yet; Google Voice offers free calling within the US and Canada and it has many advantages such as ringing many phone numbers. Obi on the other hand is a nice SIP client that can work with Google Voice and other VoIP providers and connect them to your house phone. You can purchase an Obi for about $50 on Amazon. If you currently have land line service with your triple play offering with Comcast, Verizon Fios etc, it is not possible to directly port your number to Google Voice, You need to first port your number to a wireless carrier and then to Google Voice. I chose to do this process by using TMobile. I ordered a Prepaid SIM card activtion kit from Amazon for about $10. Then you need to put this into a spare phone and activate the number. Tmobile has an activation site at http://prepaid-phones.t-mobile.com/prepaid-activate. It is fairly straight forward to go through. However, when you hit Step 5 to fund your pre-paid account. This is where the web site drives you crazy. You literally cannot go forward because of a Form Validation error where it says the Auto-Pay date is not set. Surprisingly, there is no such field on the form! After pulling my hair out, I resorted to a little hack that helped me get through the process. Before I show you what you need to do, here is what is happening: Behind the scenes, the form is populated with an Automatic Payment field. So the server thinks that you are trying to set recurring payments while you are only trying to do a one time payment. What we need to fix is to get into the “hidden” fields of the form and change the value so the server realizes that we are not trying to set up a recurring payment. Here is how to do it; just open the browser with Chrome (or IE) http://buragc.files.wordpress.com/2013/10/capture2.png?w=487 Now hit the inspect element button to start looking at the form: http://buragc.files.wordpress.com/2013/10/inspectelement.png?w=487 Hit Control + F to bring up the search box in the form: http://buragc.files.wordpress.com/2013/10/find.png?w=400 Now search for “autofill” you will something similar to the following: http://buragc.files.wordpress.com/2013/10/inputhidden.png?w=487 Double click on the “autorefill” part of value=“autorefill” and change it to value=“autorefill1” by adding a number to the end. Now re-fill the rest of the form as you would and submit, you should be all set!