					function updateHtml(id){
						if(document.getElementById) return document.getElementById(id);
						if(document.all) return document.all.id;
						if(document.layers) return document.layers.id;
						if(window.opera) return window.opera.id;
					}
					
					function setPages(obj){
					
						var index0, index1;

 						if (obj.name == "jobPages"){
 							index0 = document.getElementById('jobDetails').jobPages.selectedIndex;
 							var pages = document.getElementById('jobDetails').jobPages.options[document.getElementById('jobDetails').jobPages.selectedIndex].value;
				
							if(pages == '1'){
								updatePrice('&#8364;100');
							}
							if(pages == '2'){
								updatePrice('&#8364;150');
							}
							if(pages == '3'){
								updatePrice('&#8364;200');
							}
							if(pages == '4'){
								updatePrice('&#8364;250');
							}
							if(pages == '5'){
								updatePrice('&#8364;300');
							}
							if(pages == '6'){
								updatePrice('&#8364;350');
							}
							if(pages == '7'){
								updatePrice('&#8364;400');
							}
							if(pages == '8'){
								updatePrice('&#8364;450');
							}
							if(pages == '9'){
								updatePrice('&#8364;750');
							}
							if(pages == '10'){
								updatePrice('&#8364;825');
							}
											

						}
 					}
					
					function updatePrice(value){
						updateHtml("updatePrice").innerHTML = value;
					}