function submit_form(){
	$.ajax({
		type: 'post',
		url: '/join-list.php',
		data: 'email='+$("#email").val(),
		success: function(){
			$("#join_form").html('<p style="color: #eb9ec0; font-weight: bold; padding: 6px;">Thank You</p>');
		}
	});
	return false;
}