jQuery("#fakeSubmit").click(function(){
var word = jQuery("#fkCap").val().toLowerCase();
//if( word == "nine" || word == "9" ){
jQuery("#realSubmit").click();
//} else {
// alert("Please enter the correct answer.");
//}
});
jQuery('#telph').focus(function() {
jQuery(this).attr('placeholder', '###-###-####');
}).blur(function() {
jQuery(this).attr("placeholder", "Phone Number");
});