Request a Prospectus

Please use the form below to request our prospectus pack.
Alternatively you can contact our Director of Admissions, Mrs Annabel Charles on +44 (0)1372 750204 to request a prospectus or with any questions you may have.
→  Independent Schools’ GDPR Privacy Notice
St Teresa’s does hold official Open Mornings but please make contact if you would like to visit the school at a different time.

<script type="text/javascript">
	 function doValidate_1(form, validation_only)
	 {
		validation_only = validation_only || false;
        window['cff_enabling_form' ] = function(_form){
            if(!(_form instanceof $dexQuery)) _form = $dexQuery(_form);
            _form.validate().settings.ignore = '.ignore,.ignorepb';
            _form.removeData('being-submitted');
            _form.find('.submitbtn-disabled').removeClass('submitbtn-disabled');
            _form.find('.cff-processing-form').remove();
        };
        window['cff_disabling_form'] = function(_form){
            if(!(_form instanceof $dexQuery)) _form = $dexQuery(_form);
            if(cff_form_disabled(_form)) return;
            _form.find('.pbSubmit').addClass('submitbtn-disabled');
            _form.data('being-submitted',1);
            var d = document.createElement('div');
            $dexQuery(d).addClass('cff-processing-form').appendTo(_form.find('#fbuilder'));
        };
        window['cff_form_disabled' ] = function(_form){
            if(!(_form instanceof $dexQuery)) _form = $dexQuery(_form);
            return ('undefined' != typeof _form.data('being-submitted'));
        };
		var form_identifier =  '_1';
		if(typeof cpcff_validation_rules == 'undefined') cpcff_validation_rules = {};
		if(typeof cpcff_validation_rules[form_identifier] == 'undefined') cpcff_validation_rules[form_identifier] = {};
		var $dexQuery = (fbuilderjQuery) ? fbuilderjQuery : jQuery.noConflict(),
			_form = $dexQuery("#cp_calculatedfieldsf_pform"+form_identifier),
			form_disabled = function(){cff_form_disabled(_form);},
			disabling_form = function(){cff_disabling_form(_form);},
			enabling_form = function(){cff_enabling_form(_form);};
		if(form_disabled()) return false;
		_form.validate().settings.ignore = '.ignore';
		var	cpefb_error = !_form.validate().checkForm();
		var	validation_rules = cpcff_validation_rules[form_identifier],
			processing_form = function()
			{
                				for(var rule in validation_rules)
				{
					if(!validation_rules[rule]) {
						$dexQuery(form).trigger('cff-form-validation', false);
						return;
					}
				}

				if ( validation_only ) {
					$dexQuery(form).trigger('cff-form-validation', true);
					return;
				}
				_form.find("[name$='_date'][type='hidden']").each(function(){
					var v  	 = $dexQuery(this).val(),
						name = $dexQuery(this).attr( 'name' ).replace('_date', ''),
						e 	 = $dexQuery("[name='"+name+"']");
						if( e.length && ! $dexQuery("[id='"+name+"_datepicker_container']").length ){ e.val( String( e.val().replace( v, '' ) ).trim() ); }
				});
				_form.find("select option[vt]").each(function(){
                    var e = $dexQuery(this);
                    e.attr('cff-val-bk', e.val()).val(e.attr("vt"));
				});
				_form.find("input[vt]").each(function(){
                    var e = $dexQuery(this);
                    e.attr('cff-val-bk', e.val()).val(e.attr("vt"));
				});
				_form.find('.cpcff-recordset,.cff-exclude :input,[id^="form_structure_"]')
				.add(_form.find( '.ignore' )).attr('cff-disabled', 1).prop('disabled', true);
				disabling_form();
				if ( _form.attr( 'target' ) != undefined && NOT( IN( _form.attr( 'target' ).toLowerCase(), [ '_blank', '_self', '_top', '' ] ) ) ) {
					$dexQuery('[name="'+_form.prop( 'target' )+'"]').one('load', function(){
						_form.find('[cff-val-bk]').each(function(){
							var e = $dexQuery(this);
							e.val(e.attr('cff-val-bk')).removeAttr('cff-val-bk');
						});
						_form.find('[cff-disabled]').prop('disabled', false).removeAttr('cff-disabled');
						if(!/^(\s*|_self|_top|_parent)$/i.test(_form.prop('target'))) {
							enabling_form();
						}
						$dexQuery(document).trigger('cff-form-submitted', _form);
					});
				}
                _form[ 0 ].submit();
			};
		try{
			_form.find('[name="cp_ref_page"]').val(parent.window.document.location.href);
		} catch (err) {
			_form.find('[name="cp_ref_page"]').val(document.location.href);
		}
		validation_rules['fields_validation_error'] = (cpefb_error==0);
        /* 1: Do not submit if the equations are being evaluated */
        validation_rules['no_pending'] = (!(form_identifier in $dexQuery.fbuilder.calculator.processing_queue) || !$dexQuery.fbuilder.calculator.processing_queue[form_identifier]) && !$dexQuery.fbuilder.calculator.thereIsPending(form_identifier);
		if(!validation_rules['no_pending'])
		{
			$dexQuery(document).on('equationsQueueEmpty', function(evt, formId){
				if(formId == form_identifier)
				{
					$dexQuery(document).off('equationsQueueEmpty');
					validation_rules['no_pending']  = true;
					processing_form();
				}
			});
		}
		/* End :1 */
		if (validation_rules['fields_validation_error'])
		{
		  if (_form.find('[id^="hdcaptcha_cp_calculated_fields_form_post_"]').val() == '')
			{
				$dexQuery(form).trigger('cff-form-validation', false);
				alert('Please enter the captcha verification code.');
				return false;
			}
			disabling_form();
			validation_rules['captcha'] = false;
			$dexQuery.ajax({
				type: "GET",
				url:  _form.prop('action').replace(/\?$/g, ''),
				data: {
					ps: form_identifier,
					hdcaptcha_cp_calculated_fields_form_post: _form.find('[id^="hdcaptcha_cp_calculated_fields_form_post_"]').val(),
					cp_calculatedfieldsf_id: _form.find('[name="cp_calculatedfieldsf_id"]').val(),
					no_cache: Date.now()
				},
				success:function(result){
					enabling_form();
					if (result == "captchafailed")
					{
						_form.find('[id^="captchaimg_"]').attr('src', _form.find('[id^="captchaimg_"]').attr('src')+'&'+Date());
						$dexQuery(form).trigger('cff-form-validation', false);
						alert('Incorrect captcha code. Please try again.');
						return false;
					}
					else
					{
						validation_rules['captcha'] = true;
						processing_form();
					}
				}
			});
				}
		else
		{
            _form.valid();
            var page = $dexQuery('.cpefb_error:not(.message):not(.ignore):eq(0)').closest('.pbreak').attr('page')*1;
            gotopage(page, _form);
			$dexQuery(form).trigger('cff-form-validation', false);
			enabling_form();
			$dexQuery( '.cff-error-dlg' ).remove();
			$dexQuery( document ).off('click', $dexQuery.fbuilder.closeErrorDlg);
			setTimeout(function(){ $dexQuery( document ).on('click', $dexQuery.fbuilder.closeErrorDlg); }, 500);
			try {
				let errorList = _form.validate().errorList,
					mssg = [];
				errorList.forEach( (e) => {
					try {
						let aux = function(v){
								return $dexQuery( '<div></div>' ).html(v).text();
							},
							l = getField( e.element.name.match(/fieldname\d+_\d+/)[0] ).title;
						l = aux(l).replace(/\:\s*$/, '');
						l = '<b>'+(l.length  ? l+': ' : '')+'</b>'+aux(e.message);
						mssg.push( l );
					} catch(err){}
				} );
				if ( mssg.length ) {
					$dexQuery( 'body' ).append( '<div class="cff-error-dlg">'+mssg.join('<br>')+'</div>' );
				}
			} catch ( err ) {}
		}
		return false;
	}
	</script>
<script type="text/javascript">form_structure_1=[[{"form_identifier":"","name":"fieldname156","fieldlayout":"default","shortlabel":"St Teresas's School","index":0,"ftype":"fhidden","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"PROSPECTUS REQUEST ","exclude":false,"predefined":"ST TERESA'S EFFINGHAM","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname166","fieldlayout":"default","shortlabel":"","index":1,"ftype":"fCommentArea","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"week-title","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Parent's Details","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname196","fieldlayout":"default","shortlabel":"","index":2,"ftype":"fdropdown","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}},"dropdown":{"label":"Dropdown","rules":{}}}},"title":"Your Title ","size":"large","required":true,"exclude":false,"toSubmit":"text","merge":0,"choiceSelected":"-- Please Select -- - ","select2":false,"multiple":false,"first_choice":false,"first_choice_text":"","vChoices":1,"showDep":false,"choices":["\u2014 Please Select \u2014","Mr","Mrs","Ms","Miss","Mx","Dr","Lady","Rev","Lord","Sir"],"choicesVal":["","Mr","Mrs","Ms","Miss","Mx","Dr","Lady","Rev","Lord","Sir"],"choicesDep":[[],[],[],[],[],[],[],[],[],[],[]],"fBuild":{},"parent":"","optgroup":[false,false,false,false,false,false,false,false,false,false,false]},{"form_identifier":"","name":"fieldname167","fieldlayout":"default","shortlabel":"","index":3,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Parent's Full Name ","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname14","fieldlayout":"default","shortlabel":"","index":4,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Address Line 1 ","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname15","fieldlayout":"default","shortlabel":"","index":5,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Address Line 2","autocomplete":"off","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname16","fieldlayout":"default","shortlabel":"","index":6,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"City\/Town ","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname18","fieldlayout":"default","shortlabel":"","index":7,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"County\/Country ","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname19","fieldlayout":"default","shortlabel":"","index":8,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Postcode ","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname49","fieldlayout":"default","shortlabel":"","index":9,"ftype":"femail","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Email  ","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname197","fieldlayout":"default","shortlabel":"","index":10,"ftype":"femail","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Confirm Email ","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","equalTo":"fieldname49","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname102","fieldlayout":"default","shortlabel":"","index":11,"ftype":"fPhone","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}},"phone":{"label":"Phone","rules":{}},"prefix":{"label":"Prefix list","rules":{}},"format":{"label":"Format hint text","rules":{}}}},"title":"Telephone (Please include area codes)","required":false,"exclude":false,"readonly":false,"dformat":"01234 567890","predefined":"","predefinedClick":false,"countryComponent":false,"toDisplay":"iso","countries":[],"defaultCountry":"","dynamic":false,"size":"large","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname103","fieldlayout":"default","shortlabel":"","index":12,"ftype":"fPhone","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}},"phone":{"label":"Phone","rules":{}},"prefix":{"label":"Prefix list","rules":{}},"format":{"label":"Format hint text","rules":{}}}},"title":"Mobile","required":false,"exclude":false,"readonly":false,"dformat":"01234567890","predefined":"","predefinedClick":false,"countryComponent":false,"toDisplay":"iso","countries":[],"defaultCountry":"","dynamic":false,"size":"large","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname168","fieldlayout":"default","shortlabel":"","index":13,"ftype":"fCommentArea","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"week-title","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Your Daughter's Details","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname11","fieldlayout":"default","shortlabel":"","index":14,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"checkbox","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Daughter's First Name ","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname221","fieldlayout":"default","shortlabel":"","index":15,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"checkbox","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Daughter's Surname","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname198","fieldlayout":"default","shortlabel":"","index":16,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"checkbox","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Date of Birth (dd\/mm\/yyyy) ","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname169","fieldlayout":"default","shortlabel":"","index":17,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"checkbox","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Present School ","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname222","fieldlayout":"default","shortlabel":"","index":18,"ftype":"fhtml","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"_developerNotes":"","fcontent":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname218","fieldlayout":"default","shortlabel":"","index":19,"ftype":"fcheck","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"checkbox","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}},"choice":{"label":"Choice text","rules":{}}}},"title":"Proposed Entry Year Group ","layout":"one_column","required":true,"exclude":false,"readonly":false,"toSubmit":"text","merge":1,"onoff":0,"max":-1,"min":-1,"maxError":"Check no more than {0} boxes","minError":"Check at least {0} boxes","showDep":false,"choices":["Year 5","Year 6","Year 7","Year 8","Year 9","Year 10","Year 12"],"choicesVal":["Year 5","Year 6","Year 7","Year 8","Year 9","Year 10","Year 12"],"choiceSelected":[false,false,false,false,false,false,false],"choicesDep":[[],[],[],[],[],[],[]],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname223","fieldlayout":"default","shortlabel":"","index":20,"ftype":"fhtml","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"_developerNotes":"","fcontent":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname212","fieldlayout":"default","shortlabel":"","index":21,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"checkbox","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Proposed Date of Entry  ","autocomplete":"off","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname224","fieldlayout":"default","shortlabel":"","index":22,"ftype":"fhtml","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"_developerNotes":"","fcontent":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname174","fieldlayout":"default","shortlabel":"","index":23,"ftype":"fcheck","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"checkbox","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Are you interested in the day school or boarding? ","layout":"one_column","required":true,"exclude":false,"readonly":false,"toSubmit":"text","merge":1,"onoff":0,"max":-1,"min":-1,"maxError":"Check no more than {0} boxes","minError":"Check at least {0} boxes","showDep":false,"choices":["Day","Boarding"],"choicesVal":["Day",""],"choiceSelected":[false,false],"choicesDep":[[],[]],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname227","fieldlayout":"default","shortlabel":"","index":24,"ftype":"fhtml","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"_developerNotes":"","fcontent":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname213","fieldlayout":"default","shortlabel":"","index":25,"ftype":"fCommentArea","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"week-title","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"How did you hear about St Teresa's?","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname219","fieldlayout":"default","shortlabel":"","index":26,"ftype":"ftext","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Internet Search Engine ","autocomplete":"off","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","equalTo":"","regExp":"","regExpMssg":"","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname215","fieldlayout":"default","shortlabel":"","index":27,"ftype":"fdropdown","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"checkbox","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}},"dropdown":{"label":"Dropdown","rules":{}}}},"title":"Advertisement ","size":"large","required":false,"exclude":false,"toSubmit":"text","merge":0,"choiceSelected":"","select2":false,"multiple":false,"first_choice":false,"first_choice_text":"","vChoices":1,"showDep":false,"choices":["","Surrey Advertiser","Dorking and Leatherhead Advertiser","School House","Surrey Occasions","Primary Times","ABC","Grapevine","Clandon Parish Magazine","Effingham and Bookham Parish Magazine","Other"],"optgroup":[false,false,false,false,false,false,false,false,false,false,false],"choicesVal":["","Surrey Advertiser","Dorking and Leatherhead Advertiser","School House","Surrey Occasions","Primary Times","ABC","Grapevine","Clandon Parish Magazine","Effingham and Bookham Parish Magazine","Other"],"choicesDep":[[],[],[],[],[],[],[],[],[],[],[]],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname216","fieldlayout":"default","shortlabel":"","index":28,"ftype":"fdropdown","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"checkbox","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}},"dropdown":{"label":"Dropdown","rules":{}}}},"title":"Personal Recommendation ","size":"large","required":false,"exclude":false,"toSubmit":"text","merge":0,"choiceSelected":"","select2":false,"multiple":false,"first_choice":false,"first_choice_text":"","vChoices":1,"showDep":false,"choices":["","Former Pupil","Family Relation","Cranmore\/St Teresa\u2019s parent","Friend\/neighbour"],"optgroup":[false,false,false,false,false],"choicesVal":["","Former Pupil","Family Relation","Cranmore\/St Teresa\u2019s parent","Friend\/neighbour"],"choicesDep":[[],[],[],[],[]],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname220","fieldlayout":"default","shortlabel":"","index":29,"ftype":"ftextarea","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}},"textarea":{"label":"Text area","rules":{}}}},"title":"Other","autocomplete":"off","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"size":"large","minlength":"","maxlength":"","rows":"1","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname226","fieldlayout":"default","shortlabel":"","index":30,"ftype":"fhtml","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"_developerNotes":"","fcontent":"\u00a0","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname199","fieldlayout":"default","shortlabel":"","index":31,"ftype":"fcheck","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"consent","advanced":{"css":{"container":{"label":"Field container div tag","rules":{}},"label":{"label":"Field label","rules":{}},"input":{"label":"Input tag","rules":{}},"help":{"label":"Instructions for users","rules":{}}}},"title":"Please confirm that you have read and understood the terms and conditions. ","layout":"one_column","required":true,"exclude":false,"readonly":false,"toSubmit":"text","merge":1,"onoff":0,"max":-1,"min":-1,"maxError":"Check no more than {0} boxes","minError":"Check at least {0} boxes","showDep":false,"choices":["I have read and understood the terms and conditions. I consent to my personal data being used in accordance with St Teresa's Privacy Policy."],"choicesVal":["I have read and understood the terms and conditions. I consent to my personal data being used in accordance with St Teresa's Privacy Policy."],"choiceSelected":[false],"choicesDep":[[]],"fBuild":{},"parent":""}],{"0":{"title":"","description":"","formlayout":"top_aligned","formtemplate":"cp_cff_pastel","evalequations":1,"autocomplete":1,"request_cost":"fieldname156","evalequationsevent":2,"persistence":0,"customstyles":".cp_cff_pastel #fbuilder .fform h1,\n.cp_cff_pastel #fbuilder .fform h2 {\nfont-size: 24px !important;\nline-height: 1.7 !important;\ncolor: #666699 !important;\nfont-weight: normal !important; \npadding: 0 !important;\nmargin: 0 !important;\n}\n\/* Change the \u0022asterisk\u0022 in required fields *\/\n.cp_cff_pastel #fbuilder .r{\n    color:#ff0000 !important;\n    font-size: 16px !important;\n}\n.cp_cff_pastel #fbuilder .summa label {\nfont-size: 14px !important;\nline-height: 22px;\ncolor: #ff0000 !important;\nfont-weight: normal !important; \n} \n.cp_cff_pastel #fbuilder .summa input[type=text] { \npadding: 0 0 0 10px !important; \nfont-size: 14px !important;\ncolor: #ff0000 !important;\n}\n.cp_cff_pastel #fbuilder {\n    padding: 0 10px 0 10px !important;\n    background: #fafafa !important;\n    border-radius: 0 !important;\n    color: #222222 !important;\n}\n.cp_cff_pastel #fbuilder input[type=\u0022text\u0022],\n.cp_cff_pastel #fbuilder input[type=\u0022file\u0022],\n.cp_cff_pastel #fbuilder input[type=\u0022date\u0022],\n.cp_cff_pastel #fbuilder input[type=\u0022password\u0022],\n.cp_cff_pastel #fbuilder input[type=\u0022datetime\u0022],\n.cp_cff_pastel #fbuilder input[type=\u0022email\u0022],\n.cp_cff_pastel #fbuilder input[type=\u0022number\u0022],\n.cp_cff_pastel #fbuilder input[type=\u0022search\u0022],\n.cp_cff_pastel #fbuilder input[type=\u0022time\u0022],\n.cp_cff_pastel #fbuilder input[type=\u0022url\u0022],\n.cp_cff_pastel #fbuilder textarea,\n.cp_cff_pastel #fbuilder select {\n    border: 1px solid #cfdae9 !important;\n    border-radius: 0 !important;\n    padding: 3px 5px 3px 5px !important;\n    margin: 0;\n    outline: 0;\n    box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    -moz-box-sizing: border-box;\n    background-color: #E8EEEF !important;\n    font-size: 14px !important;\n    color: #222222 !important;\n    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.03) inset;\n    box-shadow: 1px 1px 1px rgba(0,0,0,0.03) inset;\n}\n.cp_cff_pastel #fbuilder input[type=\u0022date\u0022]:focus,\n.cp_cff_pastel #fbuilder input[type=\u0022file\u0022]:focus,\n.cp_cff_pastel #fbuilder input[type=\u0022text\u0022]:focus,\n.cp_cff_pastel #fbuilder input[type=\u0022password\u0022]:focus,\n.cp_cff_pastel #fbuilder input[type=\u0022datetime\u0022]:focus,\n.cp_cff_pastel #fbuilder input[type=\u0022email\u0022]:focus,\n.cp_cff_pastel #fbuilder input[type=\u0022number\u0022]:focus,\n.cp_cff_pastel #fbuilder input[type=\u0022search\u0022]:focus,\n.cp_cff_pastel #fbuilder input[type=\u0022time\u0022]:focus,\n.cp_cff_pastel #fbuilder input[type=\u0022url\u0022]:focus,\n.cp_cff_pastel #fbuilder textarea:focus,\n.cp_cff_pastel #fbuilder select:focus {\n    background: #E5E8EE !important;\n}\n.cp_cff_pastel #fbuilder .pbSubmit,\n.cp_cff_pastel #fbuilder .pbreak .pbPrevious,\n.cp_cff_pastel #fbuilder .pbreak .pbNext,\n.cp_cff_pastel #fbuilder input[type=submit],\n.cp_cff_pastel #fbuilder input[type=button],\n.cp_cff_pastel #fbuilder input[type=reset]{\n    color: #FFF;\n    background: #273F87 !important;\n    text-align: center;\n    font-style: normal;\n    border: 1px solid #8FB66E !important;\n    border-width: 0 0 4px 0 !important;\n}\n.cp_cff_pastel #fbuilder .pbSubmit:hover,\n.cp_cff_pastel #fbuilder .pbreak .pbPrevious:hover,\n.cp_cff_pastel #fbuilder .pbreak .pbNext:hover,\n.cp_cff_pastel #fbuilder input[type=submit]:hover,\n.cp_cff_pastel #fbuilder input[type=button]:hover,\n.cp_cff_pastel #fbuilder input[type=reset]:hover{\n    color: #ffffff;\n    background: #D2569E !important;\n    border: 1px solid #8FB66E !important;\n    border-width: 0 0 4px 0 !important;\n}\n\/* Photographic consent\n--------------------------------------- *\/\n.cp_cff_pastel #fbuilder .consent {\n    font-family: 'Roboto', sans-serif !important;\n    font-size: 14px !important;\n    line-height: 1.6 !important;\n    background: #fafafa !important;\n    font-weight: normal !important;\n    padding: 0 10px 10px 1px !important;\n}\n.cp_cff_pastel #fbuilder .consent label {\n    font-family: 'Roboto', sans-serif !important;\n    font-size: 14px !important;\n    line-height: 1.4 !important;\n    color: #484848 !important;\n    font-weight: normal !important;\n    padding: 0 20px 10px 0 !important;\n    background: #fafafa !important;\n}\n.cp_cff_pastel #fbuilder .consent h6 {\n    font-family: 'Roboto', sans-serif !important;\n    font-size: 18px !important;\n    color: #222222 !important;\n    font-weight: normal !important; \n    padding: 20px 0 0 0 !important;\n    margin: 0 !important;\n    background: #fafafa !important;\n}\n.cp_cff_pastel #fbuilder .consent p {\n    font-family: 'Roboto', sans-serif !important;\n    font-size: 14px !important;\n    color: #222222 !important;\n    font-weight: normal !important; \n    padding: 0 30px 0 0 !important;\n    background: #fafafa !important;\n} \n\/* Photographic consent end\n-----------------------------*\/\n.cp_cff_pastel #fbuilder hr { \n    display: block; \n    color: #dddddd !important;\n    margin-top: 0 !important;\n    margin-bottom: 5px !important;\n} \n.cp_cff_pastel #fbuilder .checkbox h6 { \n    padding-top: 10px !important;\n    margin-top: 0 !important;\n} \n    .cp_cff_pastel #fbuilder .checkbox label, \n    .cp_cff_pastel #fbuilder .checkbox { \n    margin-top: 0 !important;\n    padding: 1px 8px !important;\n} \n.cp_cff_pastel #fbuilder .week-title { \nline-height: 1.7 !important;\nmargin-top: 10px !important;\nmargin-bottom: 10px !important;\n} \n.cp_cff_pastel #fbuilder .week-title label { \nfont-family: 'Open Sans', sans-serif !important;\n\tfont-size: 18px !important; \n    line-height: 26px !important; \n    color: #ffffff !important; \n    font-weight: 400 !important;\n    background: #8FB66E !important;\n    padding: 2px 7px 4px 5px !important;\n}\n.cp_cff_pastel #fbuilder .comment { \n    font-family: 'Open Sans', sans-serif !important;\n    font-size: 14px !important;\n    line-height: 1.2 !important;\n    background: #fafafa !important;\n    color: #57763a!important;\n    font-weight: normal !important; \n    padding-bottom: 5px !important; \n    margin-top: 0 !important;\n    margin-bottom: 0 !important;\n}","loading_animation":0,"animate_form":0,"evalequations_delay":0,"direction":"ltr","animation_effect":"fade","titletag":"H2","textalign":"default","headertextcolor":"","advanced":{"css":{}}},"formid":"cp_calculatedfieldsf_pform_1","setCache":false,"cache":false}];</script>

You will receive a confirmation email shortly. Please also check your spam folder.